From owner-svn-src-stable-9@freebsd.org Fri Jul 3 00:18:23 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6D6B993545 for ; Fri, 3 Jul 2015 00:18:23 +0000 (UTC) (envelope-from einthusan@gmail.com) Received: from mail-ig0-x22e.google.com (mail-ig0-x22e.google.com [IPv6:2607:f8b0:4001:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 835582102 for ; Fri, 3 Jul 2015 00:18:23 +0000 (UTC) (envelope-from einthusan@gmail.com) Received: by igcsj18 with SMTP id sj18so175530173igc.1 for ; Thu, 02 Jul 2015 17:18:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=user-agent:date:subject:from:to:message-id:thread-topic :mime-version:content-type:content-transfer-encoding; bh=ptCt7D+sKJUZucvCiehmb3wRjsszrzsyQ4v/+r5dqgo=; b=huQCG/M/ixpWaHYzEowrceMM8BvjW6OOHakTg04Jz3mo4FNrrJyC1c+Pvr3njRGEY/ 7JbFoQF0U4IQl92mMgkn/PA5QOIT24BfQ2/aC0rkQ/QpHDO7pLgo5xcH6nkkwfefF+zb 2Z8dKg+TgsnN+MQ7NViPaJ3XawdKtKiC9OaOUjLLbFWN9+lIJ2GdzI2rNM35AxEUJjKN h5Axp5Yk37f/HWgi5YzHWv8YnkRd6p3S1nWrmvyiUlcmGT3smLWKe2+W7SCEyCf2ft5g QH4bbwA+VcMz/DLRyknqsmylXYq9emhClvhtr33pFYL4XtUJo96qvEeK1Ejv7KgxWFWM CjIw== X-Received: by 10.107.134.141 with SMTP id q13mr50772538ioi.91.1435882703018; Thu, 02 Jul 2015 17:18:23 -0700 (PDT) Received: from [192.168.2.153] ([69.156.94.84]) by mx.google.com with ESMTPSA id kl8sm2326675igb.15.2015.07.02.17.18.21 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 02 Jul 2015 17:18:21 -0700 (PDT) User-Agent: Microsoft-MacOutlook/0.0.0.150618 Date: Thu, 02 Jul 2015 20:18:19 -0400 Subject: help From: Einthusan Vigneswaran To: Message-ID: Thread-Topic: help Mime-version: 1.0 Content-type: text/plain; charset="UTF-8" Content-transfer-encoding: 7bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jul 2015 00:18:23 -0000 On 2015-07-02, 8:00 AM, "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" >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 "svn-src-stable-9-unsubscribe@freebsd.org" > >------------------------------ > >End of svn-src-stable-9 Digest, Vol 46, Issue 2 >***********************************************