call execle with the correct params; netbsd pr#2737, augustss@cs.chalmers.se
authorderaadt <deraadt@openbsd.org>
Fri, 20 Sep 1996 07:12:57 +0000 (07:12 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 20 Sep 1996 07:12:57 +0000 (07:12 +0000)
sbin/shutdown/shutdown.c

index ff7360b..35bc0fd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: shutdown.c,v 1.4 1996/09/02 12:21:57 deraadt Exp $    */
+/*     $OpenBSD: shutdown.c,v 1.5 1996/09/20 07:12:57 deraadt Exp $    */
 /*     $NetBSD: shutdown.c,v 1.9 1995/03/18 15:01:09 cgd Exp $ */
 
 /*
@@ -44,7 +44,7 @@ static char copyright[] =
 #if 0
 static char sccsid[] = "@(#)shutdown.c 8.2 (Berkeley) 2/16/94";
 #else
-static char rcsid[] = "$OpenBSD: shutdown.c,v 1.4 1996/09/02 12:21:57 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: shutdown.c,v 1.5 1996/09/20 07:12:57 deraadt Exp $";
 #endif
 #endif /* not lint */
 
@@ -360,12 +360,12 @@ die_you_gravy_sucking_pig_dog()
        (void)printf("\nkill -HUP 1\n");
 #else
        if (doreboot) {
-               execle(_PATH_REBOOT, "reboot", "-l", nosync, 0);
+               execle(_PATH_REBOOT, "reboot", "-l", nosync, NULL, NULL);
                syslog(LOG_ERR, "shutdown: can't exec %s: %m.", _PATH_REBOOT);
                perror("shutdown");
        }
        else if (dohalt) {
-               execle(_PATH_HALT, "halt", "-l", nosync, 0);
+               execle(_PATH_HALT, "halt", "-l", nosync, NULL, NULL);
                syslog(LOG_ERR, "shutdown: can't exec %s: %m.", _PATH_HALT);
                perror("shutdown");
        }