Hello Mark!

> Well, probably Subversion 1.6.13 actually.
No, I think it's gcc.

> Seems like some fixed sized strictures in the svn api have now become
> dynamically sized, thus invalidating the static arrays that fsvs declares.
No, I took sizeof(char*) (wrong!) + strlen("CONST STRING") - and one of these 
is no
longer wanted by the compiler.

> I have not looked at this yet (other than noticing that I can't build
> for Fedora 14 atm!) - does anyone have the Philip-approved patches ? :-)
First, it's "Philipp" with 3 "p"; and second, does either of these count?

    http://fsvs.tigris.org/source/browse/fsvs?view=rev&revision=2448


Thank you very much!


Regards,

Phil


-- 
Versioning your /etc, /home or even your whole installation?
             Try fsvs (fsvs.tigris.org)!

------------------------------------------------------
http://fsvs.tigris.org/ds/viewMessage.do?dsForumId=3928&dsMessageId=2697266

To unsubscribe from this discussion, e-mail: 
[[email protected]].
Index: src/options.h
===================================================================
--- src/options.h	(Revision 2447)
+++ src/options.h	(Revision 2448)
@@ -174,7 +174,7 @@
  * */
 struct opt__list_t {
 	/** Name of the option. */
-	char *name;
+	char name[24];
 
 	/** Function to convert the string into a value. */
 	opt___parse_t *parse;
Index: CHANGES
===================================================================
--- CHANGES	(Revision 2447)
+++ CHANGES	(Revision 2448)
@@ -3,6 +3,8 @@
   Thanks, Florian.
 - Fix for a stray "fstat64", which compilation for MacOSX10.4.
   Thank you, Mike.
+- Fix length calculation bug, found by Mark via a (bad?) compilation warning.
+  Thank you!
 
 Changes since 1.2.1
 - Documentation fixes. Thank you, Gunnar.

Reply via email to