diff options
| author | 2001-07-09 07:02:08 +0000 | |
|---|---|---|
| committer | 2001-07-09 07:02:08 +0000 | |
| commit | c96f6a27c3654d9b37ce17714ba983b42dfbc904 (patch) | |
| tree | e0f346e8dbda198bf6f0668e527c29de361f75cd /usr.sbin/httpd/src/modules/ssl/ssl_util.c | |
| parent | a first pass at -Wall (diff) | |
| download | wireguard-openbsd-c96f6a27c3654d9b37ce17714ba983b42dfbc904.tar.xz wireguard-openbsd-c96f6a27c3654d9b37ce17714ba983b42dfbc904.zip | |
correct type on last arg to execl(); nordin@cse.ogi.edu
Diffstat (limited to 'usr.sbin/httpd/src/modules/ssl/ssl_util.c')
| -rw-r--r-- | usr.sbin/httpd/src/modules/ssl/ssl_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_util.c b/usr.sbin/httpd/src/modules/ssl/ssl_util.c index af4a9672f25..2fefbb45037 100644 --- a/usr.sbin/httpd/src/modules/ssl/ssl_util.c +++ b/usr.sbin/httpd/src/modules/ssl/ssl_util.c @@ -258,7 +258,7 @@ int ssl_util_ppopen_child(void *cmd, child_info *pinfo) spawnl(P_NOWAIT, SHELL_PATH, SHELL_PATH, "/c", (char *)cmd, NULL); #else /* Standard Unix */ - execl(SHELL_PATH, SHELL_PATH, "-c", (char *)cmd, NULL); + execl(SHELL_PATH, SHELL_PATH, "-c", (char *)cmd, (char *)NULL); #endif return (child_pid); } |
