forked from pool/strongswan
70feac5f48
Copy from network/strongswan based on submit request 20845 from user mtomaschewski OBS-URL: https://build.opensuse.org/request/show/20845 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/strongswan?expand=0&rev=17
22 lines
649 B
Diff
22 lines
649 B
Diff
From: Marius Tomaschewski <mt@suse.de>
|
|
Date: Fri, 4 Sep 2009 11:36:36 +0200
|
|
Subject: [PATCH] fixed open failure debug message in load_secrets
|
|
|
|
|
|
diff --git a/src/charon/plugins/stroke/stroke_cred.c b/src/charon/plugins/stroke/stroke_cred.c
|
|
index 68df7f0..80e3954 100644
|
|
--- a/src/charon/plugins/stroke/stroke_cred.c
|
|
+++ b/src/charon/plugins/stroke/stroke_cred.c
|
|
@@ -709,7 +709,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;
|
|
}
|
|
|
|
--
|
|
1.6.0.2
|
|
|