1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-01 05:47:28 +03:00

The idea of this function is not to touch the argument, so make it const too...

(This used to be commit 8a63fe45058b15c15d79e15387e908564cfe5c2d)
This commit is contained in:
Andrew Bartlett 2002-08-17 04:56:38 +00:00
parent a27ec4a011
commit ba1d348265

View File

@ -214,7 +214,7 @@ int strwicmp(const char *psz1, const char *psz2)
/* Convert a string to upper case, but don't modify it */
char *strupper_static(char *s)
char *strupper_static(const char *s)
{
static pstring str;