diff options
author | Jeremy Allison <jra@samba.org> | 2011-05-05 14:36:55 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-05-05 23:56:08 +0200 |
commit | f85e095dd29638dcb4819f60a7239bc37e8a41ca (patch) | |
tree | c70e7a3229463d2af4a0a38a033145f46c1889bb /source3/web | |
parent | 02af3075858814811bc30f03623eb6715f9b7a78 (diff) | |
download | samba-f85e095dd29638dcb4819f60a7239bc37e8a41ca.tar.gz samba-f85e095dd29638dcb4819f60a7239bc37e8a41ca.tar.bz2 samba-f85e095dd29638dcb4819f60a7239bc37e8a41ca.zip |
More simple const fixups.
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/swat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index f06bf5ed26..392b7131d8 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -83,7 +83,7 @@ static char *fix_backslash(const char *str) return newstring; } -static const char *fix_quotes(TALLOC_CTX *ctx, const char *str) +static const char *fix_quotes(TALLOC_CTX *ctx, char *str) { char *newstring = NULL; char *p = NULL; |