diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 08:38:42 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 08:38:42 +0000 |
commit | fcdc5efb1e245c8fa95cd031f67ec56093b9056e (patch) | |
tree | 384ba4c21e2afe6889e2d057d5b066530bf93812 /source/web/cgi.c | |
parent | 5693730594b1a861c7916cac7d156cf6a9d913cd (diff) | |
download | samba-fcdc5efb1e245c8fa95cd031f67ec56093b9056e.tar.gz samba-fcdc5efb1e245c8fa95cd031f67ec56093b9056e.tar.xz samba-fcdc5efb1e245c8fa95cd031f67ec56093b9056e.zip |
Make more functions static, and remove duplication in the use of functions
in lib/smbpasswd.c that were exact duplicates of functions in passdb/passdb.c
(These should perhaps be pulled back out to smbpasswd.c, but that can occour
later).
Andrew Bartlett
Diffstat (limited to 'source/web/cgi.c')
-rw-r--r-- | source/web/cgi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/web/cgi.c b/source/web/cgi.c index 8a103fa57f3..aac009893ca 100644 --- a/source/web/cgi.c +++ b/source/web/cgi.c @@ -91,7 +91,7 @@ static char *grab_line(FILE *f, int *cl) (This was in rfc1738_unescape(), but that broke the squid helper) **/ -void plus_to_space_unescape(char *buf) +static void plus_to_space_unescape(char *buf) { char *p=buf; |