diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-01-24 12:28:13 +1300 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-01-24 12:28:13 +1300 |
commit | 9fae35c9cf2d5a319623946705e5d7179ea5c338 (patch) | |
tree | c489bfe332588c4fb918b4759c3f89f8b4c0a75f /protocols/msn/ns.c | |
parent | 7308b63f3300d5b2a326edfde6c50a18bc05e3e5 (diff) | |
parent | 68c7c145c281fe3ae734b345bf133d70d1ef8652 (diff) |
Merge from Wilmer
Diffstat (limited to 'protocols/msn/ns.c')
-rw-r--r-- | protocols/msn/ns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/msn/ns.c b/protocols/msn/ns.c index 2d90b2f3..4ced58a0 100644 --- a/protocols/msn/ns.c +++ b/protocols/msn/ns.c @@ -364,7 +364,7 @@ static int msn_ns_command( gpointer data, char **cmd, int num_parts ) } else if( strcmp( cmd[0], "ILN" ) == 0 ) { - struct msn_away_state *st; + const struct msn_away_state *st; if( num_parts != 6 ) { @@ -392,7 +392,7 @@ static int msn_ns_command( gpointer data, char **cmd, int num_parts ) } else if( strcmp( cmd[0], "NLN" ) == 0 ) { - struct msn_away_state *st; + const struct msn_away_state *st; if( num_parts != 5 ) { @@ -538,7 +538,7 @@ static int msn_ns_command( gpointer data, char **cmd, int num_parts ) else if( isdigit( cmd[0][0] ) ) { int num = atoi( cmd[0] ); - struct msn_status_code *err = msn_status_by_number( num ); + const struct msn_status_code *err = msn_status_by_number( num ); g_snprintf( buf, sizeof( buf ), "Error reported by MSN server: %s", err->text ); do_error_dialog( gc, buf, "MSN" ); |