diff options
author | Martin Pool <mbp@samba.org> | 2001-11-19 02:48:23 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-19 02:48:23 +0000 |
commit | a1b9de0b9872b91574e75bb360d49b887a072389 (patch) | |
tree | aafd7c64d05d04501b4981dc1b718ca949d0daee /source3 | |
parent | 82574c4ebadbaeb2d5d17edab66ad01d0630b374 (diff) | |
download | samba-a1b9de0b9872b91574e75bb360d49b887a072389.tar.gz samba-a1b9de0b9872b91574e75bb360d49b887a072389.tar.bz2 samba-a1b9de0b9872b91574e75bb360d49b887a072389.zip |
Fix const warning. Doxyfy comment.
(This used to be commit 91e07a7fdc47b2baf42fc06e77d1e1d883111668)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/web/cgi.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c index e1b26d99b4..9a029684ce 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -497,11 +497,14 @@ static void cgi_download(char *file) -/*************************************************************************** -setup the cgi framework, handling the possability that this program is either -run as a true cgi program by a web browser or is itself a mini web server - ***************************************************************************/ -void cgi_setup(char *rootdir, int auth_required) +/** + * @brief Setup the CGI framework. + * + * Setup the cgi framework, handling the possibility that this program + * is either run as a true CGI program with a gateway to a web server, or + * is itself a mini web server. + **/ +void cgi_setup(const char *rootdir, int auth_required) { BOOL authenticated = False; char line[1024]; |