From: Frederic Marchal Date: Wed, 1 Apr 2015 18:20:14 +0000 (+0200) Subject: Fix a few spelling mistakes. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=70ca3381dd2dc6416621d6159acf930e477ef731;p=thirdparty%2Fsarg.git Fix a few spelling mistakes. --- diff --git a/lastlog.c b/lastlog.c index 7ce0520..6a7e170 100644 --- a/lastlog.c +++ b/lastlog.c @@ -235,7 +235,7 @@ static void DeleteEmptyDirs(char *Path,int PathSize,int BasePos) debuga(_("Deleting empty directory %s\n"),Path); if (index) { if (strlen(Path)+strlen(INDEX_HTML_FILE)+2>=PathSize) { - debuga(_("Buffer to small to delete index file %s/%s"),Path,INDEX_HTML_FILE); + debuga(_("Buffer too small to delete index file %s/%s"),Path,INDEX_HTML_FILE); exit(EXIT_FAILURE); } strcat(Path,"/"INDEX_HTML_FILE); diff --git a/util.c b/util.c index d33a88d..dcfdc7d 100644 --- a/util.c +++ b/util.c @@ -2179,7 +2179,7 @@ void unlinkdir(const char *dir,bool contentonly) } else if (S_ISDIR(st.st_mode)) { unlinkdir(dname,0); } else { - debuga(_("unknown path type %s\n"),dname); + debuga(_("Unknown path type %s\n"),dname); } } closedir(dirp); @@ -2314,7 +2314,7 @@ void emptytmpdir(const char *dir) exit(EXIT_FAILURE); } } else { - debuga(_("unknown path type %s\n"),dname); + debuga(_("Unknown path type %s\n"),dname); } } closedir(dirp);