[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: rev 5420 - in trunk/subversion: include libsvn_repos

From: <cmpilato_at_collab.net>
Date: 2003-03-21 19:56:28 CET

sussman@tigris.org writes:

> Author: sussman
> Date: Fri Mar 21 12:01:03 2003
> New Revision: 5420

...

> Modified: trunk/subversion/libsvn_repos/load.c
> ==============================================================================
> --- trunk/subversion/libsvn_repos/load.c (original)
> +++ trunk/subversion/libsvn_repos/load.c Fri Mar 21 12:01:03 2003
> @@ -838,6 +844,34 @@
>
>
> static svn_error_t *
> +remove_node_props (void *baton)
> +{
> + struct node_baton *nb = baton;
> + struct revision_baton *rb = nb->rb;
> + apr_hash_t *proplist;
> + apr_hash_index_t *hi;
> +
> + SVN_ERR (svn_fs_node_proplist (&proplist,
> + rb->txn_root, nb->path, nb->pool));
> +
> + for (hi = apr_hash_first (nb->pool, proplist); hi; hi = apr_hash_next (hi))
> + {
> + const void *key;
> + apr_ssize_t keylen;
> + void *val;
> +
> + apr_hash_this (hi, &key, &keylen, &val);
> +
> + SVN_ERR (svn_fs_change_node_prop (rb->txn_root, nb->path,
> + (const char *) key, NULL,
> + nb->pool));

Get that cast out of there, bucko. \:-/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Mar 21 19:59:16 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.