]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Fix an error in a string
authorFrederic Marchal <fmarchal@users.sourceforge.net>
Fri, 20 Feb 2015 13:19:33 +0000 (14:19 +0100)
committerFrederic Marchal <fmarchal@users.sourceforge.net>
Fri, 20 Feb 2015 13:19:33 +0000 (14:19 +0100)
It should not be a problem for translators as the correct string did
exist in another part of the file.

log.c

diff --git a/log.c b/log.c
index c2b8d37bca780291fce4fc86875d99ffc0db897d..f94000c46660e7d9320194147042b4b79447ec2a 100644 (file)
--- 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);