svn commit: r285007 - stable/10/usr.sbin/dconschat

Pedro F. Giffuni pfg at FreeBSD.org
Wed Jul 1 15:03:50 UTC 2015


Author: pfg
Date: Wed Jul  1 15:03:49 2015
New Revision: 285007
URL: https://svnweb.freebsd.org/changeset/base/285007

Log:
  MFC	284913:
  dconschat(8): Use NULL instead of 0 for the last argument in execl(3)
  
  Found while experimenting with the gcc sentinel attribute.

Modified:
  stable/10/usr.sbin/dconschat/dconschat.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/dconschat/dconschat.c
==============================================================================
--- stable/10/usr.sbin/dconschat/dconschat.c	Wed Jul  1 14:54:13 2015	(r285006)
+++ stable/10/usr.sbin/dconschat/dconschat.c	Wed Jul  1 15:03:49 2015	(r285007)
@@ -229,7 +229,7 @@ dconschat_fork_gdb(struct dcons_state *d
 		snprintf(buf, 256, "\n[fork %s]\n", com);
 		write(p->outfd, buf, strlen(buf));
 
-		execl("/bin/sh", "/bin/sh", "-c", com, 0);
+		execl("/bin/sh", "/bin/sh", "-c", com, NULL);
 
 		snprintf(buf, 256, "\n[fork failed]\n");
 		write(p->outfd, buf, strlen(buf));


More information about the svn-src-stable mailing list