diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-19 01:41:40 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2011-12-19 01:41:40 +0100 |
commit | 4be0e3458a001a1c2eb3dd0074d7fd65260f2e6f (patch) | |
tree | aa5e4b1300224c229af384bdd5d2c86f55165390 /lib/oauth.c | |
parent | bf57cd1bf1019decd67d7c835060675e6a030cde (diff) |
Give a list of SASL mechanisms supported by a server when reporting we don't
support any of them.
Diffstat (limited to 'lib/oauth.c')
-rw-r--r-- | lib/oauth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oauth.c b/lib/oauth.c index 23353c61..4d7acd97 100644 --- a/lib/oauth.c +++ b/lib/oauth.c @@ -134,7 +134,7 @@ void oauth_params_del( GSList **params, const char *key ) GSList *l, *n; if( params == NULL ) - return NULL; + return; for( l = *params; l; l = n ) { |