summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-08-17 04:56:38 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-08-17 04:56:38 +0000
commitba1d3482653d2bfef0a9d233f118654dd7144ab3 (patch)
treed604cc42746e8ffe9d4379a584387a5c36a7c589 /source3/lib/util_str.c
parenta27ec4a0118e4443e76f706b715c95c17ce60595 (diff)
downloadsamba-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.c2
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;