summaryrefslogtreecommitdiff
path: root/source4/script/mkproto.pl
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-06-13 23:50:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:38 -0500
commitb1268fc4455f61ee49412fc256106cd34e98ce7c (patch)
tree3b2308a0f1f3e597ab8bc968d5295988c1654ec0 /source4/script/mkproto.pl
parent8dcb4aa084457e6d7a68467dceebc11abe4464bd (diff)
downloadsamba-b1268fc4455f61ee49412fc256106cd34e98ce7c.tar.gz
samba-b1268fc4455f61ee49412fc256106cd34e98ce7c.tar.bz2
samba-b1268fc4455f61ee49412fc256106cd34e98ce7c.zip
r1123: Make all lp_ string functions return 'const char *'.
Fix other 'const' warnings in the torture code. Andrew Bartlett (This used to be commit 5d39d7497f189da15d659b3f83b7314026040a15)
Diffstat (limited to 'source4/script/mkproto.pl')
-rw-r--r--source4/script/mkproto.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/mkproto.pl b/source4/script/mkproto.pl
index 02291fbb5b..3c505f64d2 100644
--- a/source4/script/mkproto.pl
+++ b/source4/script/mkproto.pl
@@ -34,7 +34,7 @@ sub handle_loadparm {
my %tmap = (
"BOOL" => "BOOL ",
"CONST_STRING" => "const char *",
- "STRING" => "char *",
+ "STRING" => "const char *",
"INTEGER" => "int ",
"CHAR" => "char ",
"LIST" => "const char **",