aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@debian.org>2011-06-07 15:45:18 +0200
committerTobias Brunner <tobias@strongswan.org>2011-06-07 15:45:18 +0200
commitcb7a9862c61bd17b1c2c30365b7d6a777180f0f4 (patch)
tree1c04e7c5cbe726817309e906385eda5b1ece5fb4 /src
parent328b377efaf7715bda7fa4cca56a3589a3d25e07 (diff)
downloadstrongswan-cb7a9862c61bd17b1c2c30365b7d6a777180f0f4.tar.bz2
strongswan-cb7a9862c61bd17b1c2c30365b7d6a777180f0f4.tar.xz
Fix compilation with GCC 4.6.
Diffstat (limited to 'src')
-rw-r--r--src/libcharon/plugins/stroke/stroke_ca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/stroke/stroke_ca.c b/src/libcharon/plugins/stroke/stroke_ca.c
index 69e13deb9..bec35a661 100644
--- a/src/libcharon/plugins/stroke/stroke_ca.c
+++ b/src/libcharon/plugins/stroke/stroke_ca.c
@@ -319,7 +319,7 @@ static void list_uris(linked_list_t *list, char *label, FILE *out)
{
if (first)
{
- fprintf(out, label);
+ fprintf(out, "%s", label);
first = FALSE;
}
else