diff src/ntlm.c @ 11586:03cd74ca2562

[gaim-migrate @ 13856] clean up some compile warnings committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 02 Oct 2005 16:50:08 +0000
parents e2ebebcae270
children 4669e7461968
line wrap: on
line diff
--- a/src/ntlm.c	Sun Oct 02 05:58:51 2005 +0000
+++ b/src/ntlm.c	Sun Oct 02 16:50:08 2005 +0000
@@ -131,7 +131,7 @@
 }
 
 gchar *gaim_ntlm_parse_type2(gchar *type2) {
-	guint retlen;
+	gsize retlen;
 	static gchar nonce[8];
 	struct type2_message *tmsg = (struct type2_message*)gaim_base64_decode((char*)type2, &retlen);
 	memcpy(nonce, tmsg->nonce, 8);
@@ -157,7 +157,7 @@
 static void des_ecb_encrypt(char *plaintext, char *result, char *key) {
 	GaimCipher *cipher;
 	GaimCipherContext *context;
-	guint outlen;
+	gsize outlen;
 	
 	cipher = gaim_ciphers_find_cipher("des");
 	context = gaim_cipher_context_new(cipher, NULL);