From owner-svn-src-all@freebsd.org Fri Dec 11 23:46:34 2015 Return-Path: Delivered-To: svn-src-all@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 C1BB2A04FC7; Fri, 11 Dec 2015 23:46:34 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 9183A1190; Fri, 11 Dec 2015 23:46:34 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBBNkX0g052959; Fri, 11 Dec 2015 23:46:33 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBBNkX7Q052958; Fri, 11 Dec 2015 23:46:33 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201512112346.tBBNkX7Q052958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Fri, 11 Dec 2015 23:46:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292126 - head/usr.bin/unzip X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Dec 2015 23:46:34 -0000 Author: ak (ports committer) Date: Fri Dec 11 23:46:33 2015 New Revision: 292126 URL: https://svnweb.freebsd.org/changeset/base/292126 Log: - Remove stray whitespaces Approved by: des Modified: head/usr.bin/unzip/unzip.c Modified: head/usr.bin/unzip/unzip.c ============================================================================== --- head/usr.bin/unzip/unzip.c Fri Dec 11 22:55:41 2015 (r292125) +++ head/usr.bin/unzip/unzip.c Fri Dec 11 23:46:33 2015 (r292126) @@ -439,7 +439,7 @@ handle_existing_file(char **path) (void)unlink(*path); return 1; case 'N': - n_opt = 1; + n_opt = 1; /* FALLTHROUGH */ case 'n': return -1; @@ -855,7 +855,6 @@ test(struct archive *a, struct archive_e return error_count; } - /* * Main loop: open the zipfile, iterate over its contents and decide what * to do with each entry. @@ -1040,7 +1039,7 @@ main(int argc, char *argv[]) */ nopts = getopts(argc, argv); - /* + /* * When more of the zipinfo mode options are implemented, this * will need to change. */