1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

lib: Fix a typo

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ira Cooper <ira@samba.org>
This commit is contained in:
Volker Lendecke 2015-05-03 10:12:23 +00:00
parent 704592c14d
commit 607301a843

View File

@ -566,7 +566,7 @@ bool strupper_m(char *s)
if (!*s)
return true;
/* I assume that lowercased string takes the same number of bytes
/* I assume that uppercased string takes the same number of bytes
* as source string even in multibyte encoding. (VIV) */
len = strlen(s) + 1;
ret = unix_strupper(s,len,s,len);