diff options
author | Marius Tomaschewski <mt@suse.de> | 2009-09-04 11:36:36 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-09-04 11:52:28 +0200 |
commit | 7d1b0304467bc668b592ccd6680fd9615efbb5b2 (patch) | |
tree | f593976667acaab31e5f592f1a0cfe67f613c15f | |
parent | dd2b6f3073a82be6547abd75a229b42c17592cbd (diff) | |
download | strongswan-7d1b0304467bc668b592ccd6680fd9615efbb5b2.tar.bz2 strongswan-7d1b0304467bc668b592ccd6680fd9615efbb5b2.tar.xz |
fixed open failure debug message in load_secrets
-rw-r--r-- | src/charon/plugins/stroke/stroke_cred.c | 2 |
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; } |