Index: subversion/libsvn_wc/status.c =================================================================== --- subversion/libsvn_wc/status.c (revision 21653) +++ subversion/libsvn_wc/status.c (working copy) @@ -1653,7 +1653,10 @@ because it is the root of the edit drive. */ SVN_ERR(handle_statii(eb, eb->anchor_status->entry, db->path, db->statii, FALSE, eb->descend, pool)); - if (is_sendable_status(eb->anchor_status, eb)) + /* If the top-most dir changed, it's status is already in + db->statii and handle_statii() has reported it. */ + if (is_sendable_status(eb->anchor_status, eb) + && !(db->added || db->prop_changed || db->text_changed)) (eb->status_func)(eb->status_baton, db->path, eb->anchor_status); eb->anchor_status = NULL; }