svn commit: samba r2605 - in branches/SAMBA_3_0/source/lib: .

jra at samba.org jra at samba.org
Fri Sep 24 20:06:16 GMT 2004


Author: jra
Date: 2004-09-24 20:06:13 +0000 (Fri, 24 Sep 2004)
New Revision: 2605

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_3_0/source/lib&rev=2605&nolog=1

Log:
Fix stupid typo in back-port of Samba4 fix.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/lib/util_str.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/util_str.c
===================================================================
--- branches/SAMBA_3_0/source/lib/util_str.c	2004-09-24 20:06:02 UTC (rev 2604)
+++ branches/SAMBA_3_0/source/lib/util_str.c	2004-09-24 20:06:13 UTC (rev 2605)
@@ -1211,7 +1211,7 @@
 	/* characters below 0x3F are guaranteed to not appear in
 	   non-initial position in multi-byte charsets */
 	if ((c & 0xC0) == 0) {
-		return strchr(s, c);
+		return strchr(src, c);
 	}
 
 	/* this is quite a common operation, so we want it to be



More information about the samba-cvs mailing list