diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-09 22:40:32 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-09 22:40:32 +0000 |
commit | de04d7ef1a398716b0052c2e7a06870d8236473c (patch) | |
tree | 3afd9ccb68c25afa89cc40ce96f6b852c4a96915 | |
parent | d254229e88672158a2363bad108de0bb8dedbc45 (diff) | |
download | strongswan-de04d7ef1a398716b0052c2e7a06870d8236473c.tar.bz2 strongswan-de04d7ef1a398716b0052c2e7a06870d8236473c.tar.xz |
fixed mismatch in interface definition of get_secret()
-rw-r--r-- | src/pluto/xauth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluto/xauth.h b/src/pluto/xauth.h index f86cbb1cd..1f06aefd9 100644 --- a/src/pluto/xauth.h +++ b/src/pluto/xauth.h @@ -29,7 +29,7 @@ typedef struct { typedef struct { void *handle; - bool (*get_secret) (const xauth_t *xauth_secret); + bool (*get_secret) (xauth_t *xauth_secret); bool (*verify_secret) (const xauth_t *xauth_secret); } xauth_module_t; |