diff options
author | Martin Willi <martin@revosec.ch> | 2011-12-08 16:42:11 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-03-20 17:31:15 +0100 |
commit | 1fe6cdfac2631434464a2a550414f45b60558369 (patch) | |
tree | 2a75220c67aed067682c5364be5969a274b1294b /src/libcharon/plugins/xauth_null/xauth_null.h | |
parent | 4e73f85b818c3abf48f5c5ae3db98cc6be7dd34f (diff) | |
download | strongswan-1fe6cdfac2631434464a2a550414f45b60558369.tar.bz2 strongswan-1fe6cdfac2631434464a2a550414f45b60558369.tar.xz |
Use a string to identify xauth backends, no need for integer types
Diffstat (limited to 'src/libcharon/plugins/xauth_null/xauth_null.h')
-rw-r--r-- | src/libcharon/plugins/xauth_null/xauth_null.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/xauth_null/xauth_null.h b/src/libcharon/plugins/xauth_null/xauth_null.h index e3ebaa128..1d3c34002 100644 --- a/src/libcharon/plugins/xauth_null/xauth_null.h +++ b/src/libcharon/plugins/xauth_null/xauth_null.h @@ -44,7 +44,7 @@ struct xauth_null_t { * @return xauth_null_t object */ xauth_null_t *xauth_null_create_server(identification_t *server, - identification_t *peer); + identification_t *peer); /** * Creates the XAuth method XAuth NULL, acting as peer. @@ -54,6 +54,6 @@ xauth_null_t *xauth_null_create_server(identification_t *server, * @return xauth_null_t object */ xauth_null_t *xauth_null_create_peer(identification_t *server, - identification_t *peer); + identification_t *peer); #endif /** XAUTH_NULL_H_ @}*/ |