Author: cmpilato
Date: Mon Oct 15 15:25:50 2012
New Revision: 1398333
URL: http://svn.apache.org/viewvc?rev=1398333&view=rev
Log:
Lose some pointless code.
* subversion/mod_dav_svn/deadprops.c
(db_store): Don't bother converting 'ns' and 'name' into a
repository property name -- we don't use the result anyway.
Modified:
subversion/trunk/subversion/mod_dav_svn/deadprops.c
Modified: subversion/trunk/subversion/mod_dav_svn/deadprops.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/deadprops.c?rev=1398333&r1=1398332&r2=1398333&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/deadprops.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/deadprops.c Mon Oct 15 15:25:50 2012
@@ -514,10 +514,6 @@ db_store(dav_db *db,
/* ### namespace check? */
if (elem->first_child && !strcmp(elem->first_child->name,
SVN_DAV__OLD_VALUE))
{
- const char *propname;
-
- get_repos_propname(db, name, &propname);
-
/* Parse OLD_PROPVAL. */
old_propval = svn_string_create(dav_xml_get_cdata(elem->first_child,
pool,
0 /* strip_white */),