Changes in protocols/msn/msn.c [0a3c243:59f5c42a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
r0a3c243 r59f5c42a 27 27 #include "msn.h" 28 28 29 static void msn_login( account_t *acc)30 { 31 struct gaim_connection *gc = new_gaim_conn( acc );29 static void msn_login( struct aim_user *acct ) 30 { 31 struct gaim_connection *gc = new_gaim_conn( acct ); 32 32 struct msn_data *md = g_new0( struct msn_data, 1 ); 33 33 … … 37 37 md->fd = -1; 38 38 39 if( strchr( acc ->user, '@' ) == NULL )39 if( strchr( acct->username, '@' ) == NULL ) 40 40 { 41 41 hide_login_progress( gc, "Invalid account name" );
Note: See TracChangeset
for help on using the changeset viewer.