|
From: Sean E. <sea...@us...> - 2002-05-29 01:23:41
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv22007/src/protocols/msn Modified Files: msn.c Log Message: Fewer compile warnings! Thanks, Ari Pollak (I even spelled your name correctly) Also, I think one of these warnings may have fixed a sporadic Hotmail auth failure; let me know if you still get those. Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.77 retrieving revision 1.78 diff -u -d -r1.77 -r1.78 --- msn.c 19 May 2002 03:11:09 -0000 1.77 +++ msn.c 29 May 2002 01:23:38 -0000 1.78 @@ -1242,7 +1242,6 @@ char hippy[2048]; char *rru; char *passport; - char *filename; GET_NEXT(tmp); GET_NEXT(tmp); @@ -1250,7 +1249,7 @@ GET_NEXT(tmp); passport = tmp; - snprintf(hippy, sizeof(hippy), "%s%d%s", md->mspauth, time(NULL) - md->sl, gc->password); + snprintf(hippy, sizeof(hippy), "%s%lu%s", md->mspauth, time(NULL) - md->sl, gc->password); md5_init(&st); md5_append(&st, (const md5_byte_t *)hippy, strlen(hippy)); |