You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/05/18 17:10:12 UTC

svn commit: r1124296 - /subversion/trunk/subversion/libsvn_fs_fs/dag.h

Author: julianfoad
Date: Wed May 18 15:10:12 2011
New Revision: 1124296

URL: http://svn.apache.org/viewvc?rev=1124296&view=rev
Log:
* subversion/libsvn_fs_fs/dag.h
  (svn_fs_fs__dag_serialize, svn_fs_fs__dag_deserialize): Mention that the
    'fs' member is not preserved.

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/dag.h

Modified: subversion/trunk/subversion/libsvn_fs_fs/dag.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/dag.h?rev=1124296&r1=1124295&r2=1124296&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/dag.h (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/dag.h Wed May 18 15:10:12 2011
@@ -78,7 +78,7 @@ dag_node_t *
 svn_fs_fs__dag_dup(const dag_node_t *node,
                    apr_pool_t *pool);
 
-/* Serialize a DAG node.
+/* Serialize a DAG node, except don't try to preserve the 'fs' member.
    Implements svn_cache__serialize_func_t */
 svn_error_t *
 svn_fs_fs__dag_serialize(char **data,
@@ -86,7 +86,7 @@ svn_fs_fs__dag_serialize(char **data,
                          void *in,
                          apr_pool_t *pool);
 
-/* Deserialize a DAG node.
+/* Deserialize a DAG node, leaving the 'fs' member as NULL.
    Implements svn_cache__deserialize_func_t */
 svn_error_t *
 svn_fs_fs__dag_deserialize(void **out,