Hello Bjorn!
On Wednesday 17 October 2007 Bjorn Oglefjorn wrote:
> With the latest patches Phil and I worked out yesteday, I'm getting the
> following error when I attempt to commit a change to the repository:
...
Does that work?
Regards,
Phil
--
Versioning your /etc, /home or even your whole installation?
Try fsvs (fsvs.tigris.org)!
Index: update.c
===================================================================
--- update.c (Revision 1176)
+++ update.c (Arbeitskopie)
@@ -138,6 +138,7 @@
apr_time_t at;
svn_error_t *status_svn;
const char prop_pre_toignore[]="svn:entry";
+ const char prop_pre_toignore2[]="svn:wc:";
/* We get the name and value in UTF8.
@@ -314,7 +315,12 @@
* store them?? */
/* ignore svn:entry:* properties */
/* check for is_import_export */
- if (strncmp(utf8_name, prop_pre_toignore, strlen(prop_pre_toignore)) != 0)
+ if (strncmp(utf8_name, prop_pre_toignore, strlen(prop_pre_toignore)) == 0 ||
+ strncmp(utf8_name, prop_pre_toignore2, strlen(prop_pre_toignore2)) == 0)
+ {
+ DEBUGP("ignored property %s=%s", loc_name, loc_value);
+ }
+ else
{
sts->remote_status |= FS_PROPERTIES;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]