Commit a6d243fd0f6096dc6130ef4b7000bf69db360161
1 parent
05420b44
Exists in
master
and in
1 other branch
Fixing last commit.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/core/see.c
| @@ -294,17 +294,17 @@ static const char * see_validation(unsigned char setting) { | @@ -294,17 +294,17 @@ static const char * see_validation(unsigned char setting) { | ||
| 294 | (void) strcpy(buf, ""); | 294 | (void) strcpy(buf, ""); |
| 295 | if (setting & XAV_FILL) { | 295 | if (setting & XAV_FILL) { |
| 296 | (void) strncat(buf, paren, 63); | 296 | (void) strncat(buf, paren, 63); |
| 297 | - (void) strncat(buf, "fill"); | 297 | + (void) strncat(buf, "fill", 63); |
| 298 | paren = ","; | 298 | paren = ","; |
| 299 | } | 299 | } |
| 300 | if (setting & XAV_ENTRY) { | 300 | if (setting & XAV_ENTRY) { |
| 301 | (void) strncat(buf, paren, 63); | 301 | (void) strncat(buf, paren, 63); |
| 302 | - (void) strncat(buf, "entry"); | 302 | + (void) strncat(buf, "entry", 63); |
| 303 | paren = ","; | 303 | paren = ","; |
| 304 | } | 304 | } |
| 305 | if (setting & XAV_TRIGGER) { | 305 | if (setting & XAV_TRIGGER) { |
| 306 | (void) strncat(buf, paren, 63); | 306 | (void) strncat(buf, paren, 63); |
| 307 | - (void) strncat(buf, "trigger"); | 307 | + (void) strncat(buf, "trigger", 63); |
| 308 | paren = ","; | 308 | paren = ","; |
| 309 | } | 309 | } |
| 310 | if (strcmp(paren, "(")) | 310 | if (strcmp(paren, "(")) |