]> err.no Git - util-linux/commitdiff
execl() should be use NULL not 0
authorKarel Zak <kzak@redhat.com>
Thu, 28 Dec 2006 21:26:02 +0000 (22:26 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 4 Jan 2007 13:39:44 +0000 (14:39 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
login-utils/agetty.c
misc-utils/script.c

index d159d573c2cd89a43b27b8269e4eaf5c3d8717e0..eb9fab560953a887e2cd621a42e838dd206c0eec 100644 (file)
@@ -382,7 +382,7 @@ main(argc, argv)
 
     /* Let the login program take care of password validation. */
 
-    (void) execl(options.login, options.login, "--", logname, (char *) 0);
+    (void) execl(options.login, options.login, "--", logname, NULL);
     error(_("%s: can't exec %s: %m"), options.tty, options.login);
     exit(0);  /* quiet GCC */
 }
index 333ee0a98b915d3685dfb7d3658cbb2f2fab6cad..a8506488cc77520465307767efc6462845344685 100644 (file)
@@ -324,9 +324,9 @@ doshell() {
                shname = shell;
 
        if (cflg)
-               execl(shell, shname, "-c", cflg, 0);
+               execl(shell, shname, "-c", cflg, NULL);
        else
-               execl(shell, shname, "-i", 0);
+               execl(shell, shname, "-i", NULL);
 
        perror(shell);
        fail();