Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 02 Jul 2015 20:18:19 -0400
From:      Einthusan Vigneswaran <einthusan@gmail.com>
To:        <svn-src-stable-9@freebsd.org>
Subject:   help
Message-ID:  <C2BE7D77-E697-4A97-9D96-3AB6DF989A28@gmail.com>

next in thread | raw e-mail | index | archive | help





On 2015-07-02, 8:00 AM, "owner-svn-src-stable-9@freebsd.org on behalf of svn-src-stable-9-request@freebsd.org" <owner-svn-src-stable-9@freebsd.org on behalf of svn-src-stable-9-request@freebsd.org> wrote:

>Send svn-src-stable-9 mailing list submissions to
>	svn-src-stable-9@freebsd.org
>
>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
>	svn-src-stable-9-request@freebsd.org
>
>You can reach the person managing the list at
>	svn-src-stable-9-owner@freebsd.org
>
>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" <pfg@FreeBSD.org>
>To: src-committers@freebsd.org, svn-src-all@freebsd.org,
>	svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
>Subject: svn commit: r285008 - stable/9/usr.sbin/dconschat
>Message-ID: <201507011504.t61F4ta2076160@svn.freebsd.org>
>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
>
>_______________________________________________
>svn-src-stable-9@freebsd.org mailing list
>http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
>To unsubscribe, send any mail to &quot;svn-src-stable-9-unsubscribe@freebsd.org&quot;
>
>------------------------------
>
>End of svn-src-stable-9 Digest, Vol 46, Issue 2
>***********************************************




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?C2BE7D77-E697-4A97-9D96-3AB6DF989A28>