strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3316c2
)
Fixing a compiler warning when building with -Wextra.
author
Tobias Brunner
<tobias@strongswan.org>
Tue, 16 Mar 2010 11:42:58 +0000
(12:42 +0100)
committer
Tobias Brunner
<tobias@strongswan.org>
Tue, 16 Mar 2010 11:42:58 +0000
(12:42 +0100)
src/pluto/lex.c
patch
|
blob
|
history
diff --git
a/src/pluto/lex.c
b/src/pluto/lex.c
index
f48d24a
..
d5ebdab
100644
(file)
--- a/
src/pluto/lex.c
+++ b/
src/pluto/lex.c
@@
-205,7
+205,7
@@
flushline(const char *m)
{
if (m != NULL)
loglog(RC_LOG_SERIOUS, "\"%s\" line %d: %s", flp->filename, flp->lino, m);
- do
;
while (shift());
+ do
{}
while (shift());
return FALSE;
}
}