Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Mar 2009 22:33:47 GMT
From:      Gabor Kovesdan <gabor@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 159878 for review
Message-ID:  <200903262233.n2QMXlNr002085@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=159878

Change 159878 by gabor@gabor_server on 2009/03/26 22:33:26

	- Fix rwo nits that slipped in during NLS catalog cleanup

Affected files ...

.. //depot/projects/soc2008/gabor_textproc/grep/grep.c#86 edit
.. //depot/projects/soc2008/gabor_textproc/grep/util.c#81 edit

Differences ...

==== //depot/projects/soc2008/gabor_textproc/grep/grep.c#86 (text+ko) ====

@@ -71,7 +71,7 @@
 /* 6*/	"\t[--context[=num]] [--directories=action] [--label] [--line-buffered]\n",
 /* 7*/	"\t[--null] [pattern] [file ...]\n",
 /* 8*/	"unknown --binary-files option",
-/* 9*/	"Binary file %s matches\n"
+/* 9*/	"Binary file %s matches\n",
 /*10*/	"%s (BSD grep) %s\n",
 };
 

==== //depot/projects/soc2008/gabor_textproc/grep/util.c#81 (text+ko) ====

@@ -232,7 +232,7 @@
 		printf("%s\n", fn);
 	if (c && !cflag && !lflag && !Lflag &&
 	    binbehave == BINFILE_BIN && f->binary && !qflag)
-		printf(getstr(12), fn);
+		printf(getstr(9), fn);
 
 	return (c);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903262233.n2QMXlNr002085>