From owner-svn-src-head@freebsd.org Fri Aug 7 07:05:48 2015 Return-Path: Delivered-To: svn-src-head@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 529999B50F7; Fri, 7 Aug 2015 07:05:48 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.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 438231EAD; Fri, 7 Aug 2015 07:05:48 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t7775mXm078234; Fri, 7 Aug 2015 07:05:48 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t7775mK7078233; Fri, 7 Aug 2015 07:05:48 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201508070705.t7775mK7078233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 7 Aug 2015 07:05:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286403 - head/usr.bin/ypmatch X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Aug 2015 07:05:48 -0000 Author: araujo (ports committer) Date: Fri Aug 7 07:05:47 2015 New Revision: 286403 URL: https://svnweb.freebsd.org/changeset/base/286403 Log: Remove an extra new line on usage(). Rename domain to domainname to be identical to the man page. Reported by: bde Modified: head/usr.bin/ypmatch/ypmatch.c Modified: head/usr.bin/ypmatch/ypmatch.c ============================================================================== --- head/usr.bin/ypmatch/ypmatch.c Fri Aug 7 06:15:01 2015 (r286402) +++ head/usr.bin/ypmatch/ypmatch.c Fri Aug 7 07:05:47 2015 (r286403) @@ -66,8 +66,8 @@ static void usage(void) { fprintf(stderr, "%s\n%s\n", - "usage: ypmatch [-kt] [-d domain] key ... mapname", - " ypmatch -x\n"); + "usage: ypmatch [-kt] [-d domainname] key ... mapname", + " ypmatch -x"); fprintf(stderr, "where\n" "\tmapname may be either a mapname or a nickname for a map.\n"