Index: subversion/libsvn_wc/status.c =================================================================== --- subversion/libsvn_wc/status.c (revision 16431) +++ subversion/libsvn_wc/status.c (working copy) @@ -138,7 +138,6 @@ svn_revnum_t ood_last_cmt_rev; apr_time_t ood_last_cmt_date; svn_node_kind_t ood_kind; - const char *ood_url; const char *ood_last_cmt_author; }; @@ -178,7 +177,6 @@ svn_revnum_t ood_last_cmt_rev; apr_time_t ood_last_cmt_date; svn_node_kind_t ood_kind; - const char *ood_url; const char *ood_last_cmt_author; }; @@ -299,7 +297,6 @@ stat->ood_last_cmt_rev = SVN_INVALID_REVNUM; stat->ood_last_cmt_date = 0; stat->ood_kind = svn_wc_status_none; - stat->ood_url = NULL; stat->ood_last_cmt_author = NULL; *status = stat; @@ -488,7 +485,6 @@ stat->ood_last_cmt_rev = SVN_INVALID_REVNUM; stat->ood_last_cmt_date = 0; stat->ood_kind = svn_wc_status_none; - stat->ood_url = NULL; stat->ood_last_cmt_author = NULL; *status = stat; @@ -1046,7 +1042,6 @@ { struct dir_baton *b = baton; statstruct->ood_kind = b->ood_kind; - statstruct->ood_url = b->ood_url; /* The last committed rev, date, and author for deleted items isn't available. */ if (statstruct->repos_text_status != svn_wc_status_deleted) @@ -1062,7 +1057,6 @@ statstruct->ood_last_cmt_rev = b->ood_last_cmt_rev; statstruct->ood_last_cmt_date = b->ood_last_cmt_date; statstruct->ood_kind = b->ood_kind; - statstruct->ood_url = b->ood_url; statstruct->ood_last_cmt_author = b->ood_last_cmt_author; } return SVN_NO_ERROR; @@ -1104,7 +1098,6 @@ d->ood_last_cmt_rev = SVN_INVALID_REVNUM; d->ood_last_cmt_date = 0; d->ood_kind = svn_wc_status_none; - d->ood_url = NULL; d->ood_last_cmt_author = NULL; /* Get the status for this path's children. Of course, we only want @@ -1168,7 +1161,6 @@ f->ood_last_cmt_rev = SVN_INVALID_REVNUM; f->ood_last_cmt_date = 0; f->ood_kind = svn_wc_status_none; - f->ood_url = NULL; f->ood_last_cmt_author = NULL; return f; } @@ -1500,8 +1492,6 @@ /* Store out of date info. */ db->ood_kind = svn_node_dir; - if (!db->ood_url) - db->ood_url = apr_pstrdup (db->pool, find_dir_url (db, pool)); if (strcmp (name, SVN_PROP_ENTRY_COMMITTED_REV) == 0) db->ood_last_cmt_rev = SVN_STR_TO_REV (value->data); else if (strcmp (name, SVN_PROP_ENTRY_LAST_AUTHOR) == 0) @@ -1693,16 +1683,6 @@ /* Store out of date info. */ fb->ood_kind = svn_node_file; - if (!fb->ood_url) - { - const char *url = - svn_path_url_add_component (find_dir_url (fb->dir_baton, pool), - svn_path_basename (fb->path, pool), - pool); - - /* Copy into file_baton with a safe pool. */ - fb->ood_url = apr_pstrdup (fb->dir_baton->pool, url); - } if (strcmp (name, SVN_PROP_ENTRY_COMMITTED_REV) == 0) fb->ood_last_cmt_rev = SVN_STR_TO_REV (value->data); else if (strcmp (name, SVN_PROP_ENTRY_LAST_AUTHOR) == 0) Index: subversion/include/svn_wc.h =================================================================== --- subversion/include/svn_wc.h (revision 16431) +++ subversion/include/svn_wc.h (working copy) @@ -1586,11 +1586,6 @@ */ svn_node_kind_t ood_kind; - /** Set to the URL of the youngest commit, or @c NULL if out of date. - * @since New in 1.3 - */ - const char *ood_url; - /** Set to the user name of the youngest commit, or @c NULL if out * of date. * @since New in 1.3