diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2014-02-08 13:46:30 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2014-02-08 13:46:30 +0000 |
commit | e76cf264de6caaca24fa308cab78e770fc4a6508 (patch) | |
tree | 87d8ae01fc68f84888e74421e7b94b7913aa1a4f | |
parent | c239fff45764798331d5ce9b3190fa286c0f83f9 (diff) |
Fix "Unusuable" typo.
-rw-r--r-- | lib/oauth2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oauth2.c b/lib/oauth2.c index bfd4b143..7ebe4e50 100644 --- a/lib/oauth2.c +++ b/lib/oauth2.c @@ -183,7 +183,7 @@ static void oauth2_access_token_done( struct http_request *req ) if( getenv( "BITLBEE_DEBUG" ) ) printf( "Extracted atoken=%s rtoken=%s\n", atoken, rtoken ); if( !atoken && !rtoken && !error ) - error = g_strdup( "Unusuable response" ); + error = g_strdup( "Unusable response" ); cb_data->func( cb_data->data, atoken, rtoken, error ); g_free( content_type ); |