Changeset e306fbf
- Timestamp:
- 2011-12-21T19:35:13Z (13 years ago)
- Branches:
- master
- Children:
- 164352e
- Parents:
- 31db8165
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/oauth.c
r31db8165 re306fbf 309 309 oauth_params_parse( ¶ms, req->reply_body ); 310 310 st->request_token = g_strdup( oauth_params_get( ¶ms, "oauth_token" ) ); 311 st->token_secret = g_strdup( oauth_params_get( ¶ms, "oauth_token_secret" ) ); 311 312 oauth_params_free( ¶ms ); 312 313 } … … 338 339 oauth_params_parse( &st->params, req->reply_body ); 339 340 st->token = g_strdup( oauth_params_get( &st->params, "oauth_token" ) ); 341 g_free( st->token_secret ); 340 342 st->token_secret = g_strdup( oauth_params_get( &st->params, "oauth_token_secret" ) ); 341 343 } -
protocols/twitter/twitter.c
r31db8165 re306fbf 220 220 } else { /* if( strcmp( acc->prpl->name, "identica" ) == 0 ) */ 221 221 def_url = IDENTICA_API_URL; 222 def_oauth = " false";222 def_oauth = "true"; 223 223 } 224 224
Note: See TracChangeset
for help on using the changeset viewer.