diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-08-17 04:56:38 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-08-17 04:56:38 +0000 |
commit | ba1d3482653d2bfef0a9d233f118654dd7144ab3 (patch) | |
tree | d604cc42746e8ffe9d4379a584387a5c36a7c589 /source3/lib/util_str.c | |
parent | a27ec4a0118e4443e76f706b715c95c17ce60595 (diff) | |
download | samba-ba1d3482653d2bfef0a9d233f118654dd7144ab3.tar.gz samba-ba1d3482653d2bfef0a9d233f118654dd7144ab3.tar.bz2 samba-ba1d3482653d2bfef0a9d233f118654dd7144ab3.zip |
The idea of this function is not to touch the argument, so make it const too...
(This used to be commit 8a63fe45058b15c15d79e15387e908564cfe5c2d)
Diffstat (limited to 'source3/lib/util_str.c')
-rw-r--r-- | source3/lib/util_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 3b5ceb2217..19d92eec8f 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -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; |