From: Frederic Marchal Date: Fri, 20 Feb 2015 13:19:33 +0000 (+0100) Subject: Fix an error in a string X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0326b22444e37f807552708778357ba9be2aad95;p=thirdparty%2Fsarg.git Fix an error in a string It should not be a problem for translators as the correct string did exist in another part of the file. --- diff --git a/log.c b/log.c index c2b8d37..f94000c 100644 --- a/log.c +++ b/log.c @@ -443,7 +443,7 @@ int main(int argc,char *argv[]) exit(EXIT_FAILURE); } if (strlen(optarg)>=MAX_REDIRECTOR_FILELEN) { - debuga(_("Log file name too long passed on command line with opton %s: %s\n"),"-L",optarg); + debuga(_("Log file name too long passed on command line with option %s: %s\n"),"-L",optarg); exit(EXIT_FAILURE); } strcpy(RedirectorLogs[NRedirectorLogs],optarg);