diff options
author | Martin Willi <martin@revosec.ch> | 2010-04-07 15:51:55 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2010-04-07 15:51:55 +0200 |
commit | 613ceca96cc98a5e90b48ccb1fe69533864473dc (patch) | |
tree | 5f5c9ea08b164bdd05cc816801b7c754bf414fcc /src | |
parent | 54e354f2d6d110079facfa19ce63fcc82a6d2b0d (diff) | |
download | strongswan-613ceca96cc98a5e90b48ccb1fe69533864473dc.tar.bz2 strongswan-613ceca96cc98a5e90b48ccb1fe69533864473dc.tar.xz |
Migrated scepclient/openac logging hooks to new signature
Diffstat (limited to 'src')
-rwxr-xr-x | src/openac/openac.c | 2 | ||||
-rw-r--r-- | src/scepclient/loglite.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/openac/openac.c b/src/openac/openac.c index 933981b53..a280192c2 100755 --- a/src/openac/openac.c +++ b/src/openac/openac.c @@ -152,7 +152,7 @@ static bool stderr_quiet = FALSE; /** * openac dbg function */ -static void openac_dbg(int level, char *fmt, ...) +static void openac_dbg(debug_t group, level_t level, char *fmt, ...) { int priority = LOG_INFO; char buffer[8192]; diff --git a/src/scepclient/loglite.c b/src/scepclient/loglite.c index 539bb5f72..96dc54390 100644 --- a/src/scepclient/loglite.c +++ b/src/scepclient/loglite.c @@ -41,7 +41,7 @@ bool /** * @brief scepclient dbg function */ -static void scepclient_dbg(int level, char *fmt, ...) +static void scepclient_dbg(debug_t group, level_t level, char *fmt, ...) { int priority = LOG_INFO; int debug_level; |