ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/msn2/libmsn2 md5.c,1.1.1.1,1.2 msn_c


From: Andy Maloney <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/msn2/libmsn2 md5.c,1.1.1.1,1.2 msn_core.C,1.8,1.9
Date: Sat, 11 Jan 2003 09:52:19 -0500

Update of /cvsroot/ayttm/ayttm/modules/msn2/libmsn2
In directory subversions:/tmp/cvs-serv6797/modules/msn2/libmsn2

Modified Files:
        md5.c msn_core.C 
Log Message:
Fixes for -Wall

Index: md5.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/msn2/libmsn2/md5.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- md5.c       23 Dec 2002 22:04:58 -0000      1.1.1.1
+++ md5.c       11 Jan 2003 14:52:16 -0000      1.2
@@ -38,6 +38,7 @@
   1999-05-03 lpd Original version.
  */
 
+#include <string.h>
 #include "md5.h"
 
 #ifdef TEST
@@ -46,7 +47,7 @@
  * The test program should print out the same values as given in section
  * A.5 of RFC 1321, reproduced below.
  */
-#include <string.h>
+
 main()
 {
     static const char *const test[7] = {

Index: msn_core.C
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/msn2/libmsn2/msn_core.C,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- msn_core.C  9 Jan 2003 10:14:08 -0000       1.8
+++ msn_core.C  11 Jan 2003 14:52:16 -0000      1.9
@@ -382,7 +382,7 @@
   list = info->fl;
   while (list != NULL) {
     int is_on_al=0;
-    int is_on_rl=0;
+
     contact = (userdata *)list->data;
 #ifdef DEBUG    
     printf("checking if %s is on AL\n",contact->username);
@@ -879,6 +879,9 @@
     }
     pos++;
   }
+  
+  // FIXME - what does this return?
+  //return( ?? );
 }
 
 void msn_handle_invite(msnconn * conn, char * from, char * friendly, char * 
mime, char * body)
@@ -1560,7 +1563,8 @@
     l=l->next;
   }
 
-  authdata_FTP * auth=(authdata_FTP *)conn->auth;
+  // FIXME - What's supposed to happen here?  This is unused
+  //authdata_FTP * auth=(authdata_FTP *)conn->auth;
 
   msn_clean_up(conn);
 }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]