Changeset 552e641 for protocols/msn/ns.c


Ignore:
Timestamp:
2007-04-06T05:34:23Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
cd4723c
Parents:
aef4828
Message:

Now that all these functions take format strings, I have to make sure I
use that and don't introduce vulnerabilities. :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/ns.c

    raef4828 r552e641  
    671671        if( key == NULL )
    672672        {
    673                 char *err;
    674                
    675                 err = g_strdup_printf( "Error during Passport authentication (%s)",
    676                                        rep->error_string ? rep->error_string : "Unknown error" );
    677                
    678                 imc_error( ic, err );
     673                imc_error( ic, "Error during Passport authentication (%s)",
     674                               rep->error_string ? rep->error_string : "Unknown error" );
    679675                imc_logout( ic );
    680                
    681                 g_free( err );
    682676        }
    683677        else
Note: See TracChangeset for help on using the changeset viewer.