From owner-svn-src-stable@FreeBSD.ORG Fri Dec 5 07:51:51 2014 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF9684AD; Fri, 5 Dec 2014 07:51:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BF05A6; Fri, 5 Dec 2014 07:51:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB57ppF7052716; Fri, 5 Dec 2014 07:51:51 GMT (envelope-from rpaulo@FreeBSD.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB57ppkS052715; Fri, 5 Dec 2014 07:51:51 GMT (envelope-from rpaulo@FreeBSD.org) Message-Id: <201412050751.sB57ppkS052715@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rpaulo set sender to rpaulo@FreeBSD.org using -f From: Rui Paulo Date: Fri, 5 Dec 2014 07:51:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r275500 - stable/10/usr.sbin/gpioctl X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2014 07:51:51 -0000 Author: rpaulo Date: Fri Dec 5 07:51:50 2014 New Revision: 275500 URL: https://svnweb.freebsd.org/changeset/base/275500 Log: MFC r275420: gpioctl: don't print the command line arguments. PR: 195330 Submitted by: Scott Ellis jumpnowtek at gmail.com Modified: stable/10/usr.sbin/gpioctl/gpioctl.c Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/gpioctl/gpioctl.c ============================================================================== --- stable/10/usr.sbin/gpioctl/gpioctl.c Fri Dec 5 07:48:25 2014 (r275499) +++ stable/10/usr.sbin/gpioctl/gpioctl.c Fri Dec 5 07:51:50 2014 (r275500) @@ -224,9 +224,6 @@ main(int argc, char **argv) } argv += optind; argc -= optind; - for (i = 0; i < argc; i++) - printf("%d/%s\n", i, argv[i]); - if (ctlfile == NULL) ctlfile = defctlfile;