svn commit: r286403 - head/usr.bin/ypmatch

Marcelo Araujo araujo at FreeBSD.org
Fri Aug 7 07:05:48 UTC 2015


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"


More information about the svn-src-head mailing list