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 | 294 | (void) strcpy(buf, ""); |
| 295 | 295 | if (setting & XAV_FILL) { |
| 296 | 296 | (void) strncat(buf, paren, 63); |
| 297 | - (void) strncat(buf, "fill"); | |
| 297 | + (void) strncat(buf, "fill", 63); | |
| 298 | 298 | paren = ","; |
| 299 | 299 | } |
| 300 | 300 | if (setting & XAV_ENTRY) { |
| 301 | 301 | (void) strncat(buf, paren, 63); |
| 302 | - (void) strncat(buf, "entry"); | |
| 302 | + (void) strncat(buf, "entry", 63); | |
| 303 | 303 | paren = ","; |
| 304 | 304 | } |
| 305 | 305 | if (setting & XAV_TRIGGER) { |
| 306 | 306 | (void) strncat(buf, paren, 63); |
| 307 | - (void) strncat(buf, "trigger"); | |
| 307 | + (void) strncat(buf, "trigger", 63); | |
| 308 | 308 | paren = ","; |
| 309 | 309 | } |
| 310 | 310 | if (strcmp(paren, "(")) | ... | ... |