]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Fix a message (missing colon).
authorFrederic Marchal <fmarchal@users.sourceforge.net>
Sun, 26 Apr 2015 12:14:59 +0000 (14:14 +0200)
committerFrederic Marchal <fmarchal@users.sourceforge.net>
Sun, 26 Apr 2015 12:14:59 +0000 (14:14 +0200)
index.c

diff --git a/index.c b/index.c
index 297581317978ca638dc8fcec45dadc224018bb95..8fcbb31501db6cbc7b808a315d3b226439aeecd7 100644 (file)
--- a/index.c
+++ b/index.c
@@ -161,7 +161,7 @@ static long long int get_size(char *path,int path_size)
                if (direntp->d_name[0]=='.' && (direntp->d_name[1]=='\0' || (direntp->d_name[1]=='.' && direntp->d_name[2]=='\0'))) continue;
                name_len=strlen(direntp->d_name);
                if (path_len+name_len+1>=path_size) {
-                       debuga(_("Path too long "));
+                       debuga(_("Path too long: "));
                        debuga_more("%s%s\n",path,direntp->d_name);
                        exit(EXIT_FAILURE);
                }