aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/stroke/stroke_cred.c
diff options
context:
space:
mode:
authorMarius Tomaschewski <mt@suse.de>2009-09-04 11:36:36 +0200
committerMartin Willi <martin@strongswan.org>2009-09-04 11:52:28 +0200
commit7d1b0304467bc668b592ccd6680fd9615efbb5b2 (patch)
treef593976667acaab31e5f592f1a0cfe67f613c15f /src/charon/plugins/stroke/stroke_cred.c
parentdd2b6f3073a82be6547abd75a229b42c17592cbd (diff)
downloadstrongswan-7d1b0304467bc668b592ccd6680fd9615efbb5b2.tar.bz2
strongswan-7d1b0304467bc668b592ccd6680fd9615efbb5b2.tar.xz
fixed open failure debug message in load_secrets
Diffstat (limited to 'src/charon/plugins/stroke/stroke_cred.c')
-rw-r--r--src/charon/plugins/stroke/stroke_cred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/stroke/stroke_cred.c b/src/charon/plugins/stroke/stroke_cred.c
index e34613efd..57a02c7a1 100644
--- a/src/charon/plugins/stroke/stroke_cred.c
+++ b/src/charon/plugins/stroke/stroke_cred.c
@@ -780,7 +780,7 @@ static void load_secrets(private_stroke_cred_t *this, char *file, int level,
fd = fopen(file, "r");
if (fd == NULL)
{
- DBG1(DBG_CFG, "opening secrets file '%s' failed");
+ DBG1(DBG_CFG, "opening secrets file '%s' failed", file);
return;
}