pluto: Missing flushline call added when reading ipsec.secrets.

This commit is contained in:
Tobias Brunner 2011-10-14 18:38:18 +02:00
parent 03bf57e3bb
commit 89294d8731
1 changed files with 2 additions and 1 deletions

View File

@ -1076,7 +1076,7 @@ static void process_secrets_file(const char *file_pat, int whackfd)
if (lexopen(&pos, *fnp, FALSE))
{
plog("loading secrets from \"%s\"", *fnp);
(void) flushline("file starts with indentation (continuation notation)");
flushline("file starts with indentation (continuation notation)");
process_secret_records(whackfd);
lexclose();
}
@ -1089,6 +1089,7 @@ static void process_secrets_file(const char *file_pat, int whackfd)
if (lexopen(&pos, file_pat, FALSE))
{
plog("loading secrets from \"%s\"", file_pat);
flushline("file starts with indentation (continuation notation)");
process_secret_records(whackfd);
lexclose();
}