On 2015-07-02, 8:00 AM, "[email protected] on behalf of [email protected]" <[email protected] on behalf of [email protected]> wrote: >Send svn-src-stable-9 mailing list submissions to > [email protected] > >To subscribe or unsubscribe via the World Wide Web, visit > http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9 >or, via email, send a message with subject or body 'help' to > [email protected] > >You can reach the person managing the list at > [email protected] > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of svn-src-stable-9 digest..." > > >Today's Topics: > > 1. svn commit: r285008 - stable/9/usr.sbin/dconschat > (Pedro F. Giffuni) > > >---------------------------------------------------------------------- > >Message: 1 >Date: Wed, 1 Jul 2015 15:04:55 +0000 (UTC) >From: "Pedro F. Giffuni" <[email protected]> >To: [email protected], [email protected], > [email protected], [email protected] >Subject: svn commit: r285008 - stable/9/usr.sbin/dconschat >Message-ID: <[email protected]> >Content-Type: text/plain; charset=UTF-8 > >Author: pfg >Date: Wed Jul 1 15:04:54 2015 >New Revision: 285008 >URL: https://svnweb.freebsd.org/changeset/base/285008 > >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/9/usr.sbin/dconschat/dconschat.c > >Modified: stable/9/usr.sbin/dconschat/dconschat.c >============================================================================== >--- stable/9/usr.sbin/dconschat/dconschat.c Wed Jul 1 15:03:49 2015 >(r285007) >+++ stable/9/usr.sbin/dconschat/dconschat.c Wed Jul 1 15:04:54 2015 >(r285008) >@@ -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)); > > >------------------------------ > >Subject: Digest Footer > >_______________________________________________ >[email protected] mailing list >http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9 >To unsubscribe, send any mail to >"[email protected]" > >------------------------------ > >End of svn-src-stable-9 Digest, Vol 46, Issue 2 >*********************************************** _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9 To unsubscribe, send any mail to "[email protected]"
