diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-29 01:13:47 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-29 01:13:47 +0200 |
commit | 4ff09664d2570be8358a3bde62123cc8e0a17c9e (patch) | |
tree | a5cfc2f235f9a46f737b261186e7926aca202ebe /protocols/msn/ns.c | |
parent | cdca30b360c09399f1e5a2556d83ec997006cd75 (diff) | |
parent | 79b6213c1fa2ffaa102365515551e9f0ea9fdc1a (diff) |
Merging from main/jelmer.
Diffstat (limited to 'protocols/msn/ns.c')
-rw-r--r-- | protocols/msn/ns.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/protocols/msn/ns.c b/protocols/msn/ns.c index af3793f2..e4c2b68c 100644 --- a/protocols/msn/ns.c +++ b/protocols/msn/ns.c @@ -655,8 +655,15 @@ static void msn_auth_got_passport_id( struct passport_reply *rep ) if( key == NULL ) { - hide_login_progress( gc, "Error during Passport authentication" ); + char *err; + + err = g_strdup_printf( "Error during Passport authentication (%s)", + rep->error_string ? rep->error_string : "Unknown error" ); + + hide_login_progress( gc, err ); signoff( gc ); + + g_free( err ); } else { |