diff src/protocols/oscar/auth.c @ 5927:04dc7fe68889

[gaim-migrate @ 6367] Another crisp patch from Ryan McCabe (odin). This one makes libfaim act less sucky in the event of some weird connection problems (read: rare shizzle). Also some header and compile warning cleanup. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 20 Jun 2003 04:16:23 +0000
parents bfe98c4d331e
children 6d3d8f11e765
line wrap: on
line diff
--- a/src/protocols/oscar/auth.c	Fri Jun 20 03:55:56 2003 +0000
+++ b/src/protocols/oscar/auth.c	Fri Jun 20 04:16:23 2003 +0000
@@ -11,7 +11,7 @@
 
 #include "md5.h"
 
-static int aim_encode_password(const char *password, unsigned char *encoded);
+static int aim_encode_password(const char *password, fu8_t *encoded);
 
 /* 
  * This just pushes the passed cookie onto the passed connection, without
@@ -157,7 +157,7 @@
 	aim_frame_t *fr;
 	aim_tlvlist_t *tl = NULL;
 	int passwdlen;
-	char *password_encoded;
+	fu8_t *password_encoded;
 
 	passwdlen = strlen(password);
 	if (!(password_encoded = (char *)malloc(passwdlen+1)))