mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix syntax error in previous commit.
This commit is contained in:
parent
b47d790500
commit
135adb1eda
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ file(char *name)
|
|||
retval = 0;
|
||||
while(fgets(line, 100, fp) != NULL) {
|
||||
i = sscanf(line, "%49s %49s %49s %49s %49s", arg[0], arg[1],
|
||||
arg[2], arg[3], arg[4])
|
||||
arg[2], arg[3], arg[4]);
|
||||
if (i < 2) {
|
||||
warnx("bad line: %s", line);
|
||||
retval = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue