Author: stsp
Date: Mon Jan 21 12:57:04 2013
New Revision: 1436322
URL: http://svn.apache.org/viewvc?rev=1436322&view=rev
Log:
* subversion/libsvn_client/patch.c
(symlink_baton_t): Document fields in this struct.
Modified:
subversion/trunk/subversion/libsvn_client/patch.c
Modified: subversion/trunk/subversion/libsvn_client/patch.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/patch.c?rev=1436322&r1=1436321&r2=1436322&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Mon Jan 21 12:57:04 2013
@@ -822,7 +822,10 @@ write_file(void *baton, const char *buf,
/* Baton for the (readline|tell|seek|write)_symlink functions. */
struct symlink_baton_t
{
+ /* The path to the symlink on disk (not the path to the target of the link)
*/
const char *local_abspath;
+
+ /* Indicates whether the "normal form" of the symlink has been read. */
svn_boolean_t at_eof;
};