On Wed, Nov 25, 2009 at 07:28:28AM -0000, [email protected] wrote: > Author: bhuvan > Date: Wed Nov 25 07:28:27 2009 > New Revision: 884002 > > URL: http://svn.apache.org/viewvc?rev=884002&view=rev > Log: > Follow-up for r883916. Fix a typo. > > * subversion/libsvn_subr/utf.c > (fuzzy_escape): Fix typo in a comment.
It was not a typo: http://en.wikipedia.org/wiki/NUL "The ASCII abbreviation for the Null character, a byte containing all zero bits, used mainly as a filler or as a marker for the end of a string" Maybe we should just say '\0' cause that is what C programmers are used to. Stefan > > Modified: > subversion/trunk/subversion/libsvn_subr/utf.c > > Modified: subversion/trunk/subversion/libsvn_subr/utf.c > URL: > http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/utf.c?rev=884002&r1=884001&r2=884002&view=diff > ============================================================================== > --- subversion/trunk/subversion/libsvn_subr/utf.c (original) > +++ subversion/trunk/subversion/libsvn_subr/utf.c Wed Nov 25 07:28:27 2009 > @@ -399,7 +399,7 @@ > src++; > } > > - /* Allocate that amount, plus one slot for NUL. */ > + /* Allocate that amount, plus one slot for NULL. */ > new = apr_palloc(pool, new_len + 1); > > new_orig = new; > -- printf("Eh???/n");

