|
Lines 1175-1181
parse_char_array:
Link Here
|
| 1175 |
while ((arg = strdelim(&s)) != NULL && *arg != '\0') { |
1175 |
while ((arg = strdelim(&s)) != NULL && *arg != '\0') { |
| 1176 |
if ((*uintptr) >= max_entries) |
1176 |
if ((*uintptr) >= max_entries) |
| 1177 |
fatal("%s line %d: " |
1177 |
fatal("%s line %d: " |
| 1178 |
"too many authorized keys files.", |
1178 |
"too many known hosts files.", |
| 1179 |
filename, linenum); |
1179 |
filename, linenum); |
| 1180 |
cpptr[(*uintptr)++] = xstrdup(arg); |
1180 |
cpptr[(*uintptr)++] = xstrdup(arg); |
| 1181 |
} |
1181 |
} |