From 959003b6c0d25342c95f1bf624b9c9c491959c3c Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Tue, 12 Mar 2002 03:27:47 +0000 Subject: correct type on last arg to execl() -- Lost with upgrade to mod_ssl 2.8.7 --- usr.sbin/httpd/src/modules/ssl/ssl_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_util.c b/usr.sbin/httpd/src/modules/ssl/ssl_util.c index 798303f253a..0c3b04a0358 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); } -- cgit v1.2.3