diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-05-07 15:47:00 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-05-31 17:39:04 +0200 |
commit | 79d5c4f06b8d086d65cec30347560880815fa933 (patch) | |
tree | 6bebc2c1a0a56778b2686c9cc58d728464db8c87 /src/libstrongswan/plugins/agent | |
parent | 060b508e0e24425b9bba8d2cda1e672e636f3262 (diff) | |
download | strongswan-79d5c4f06b8d086d65cec30347560880815fa933.tar.bz2 strongswan-79d5c4f06b8d086d65cec30347560880815fa933.tar.xz |
Fixed return values of several functions (e.g. return FALSE for pointer types).
Diffstat (limited to 'src/libstrongswan/plugins/agent')
-rw-r--r-- | src/libstrongswan/plugins/agent/agent_private_key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/agent/agent_private_key.c b/src/libstrongswan/plugins/agent/agent_private_key.c index dae130bba..60b57ad2d 100644 --- a/src/libstrongswan/plugins/agent/agent_private_key.c +++ b/src/libstrongswan/plugins/agent/agent_private_key.c @@ -398,7 +398,7 @@ agent_private_key_t *agent_private_key_open(key_type_t type, va_list args) } if (!path) { - return FALSE; + return NULL; } INIT(this, |