im.pidgin.pidgin: cc8513f94aa94550d600cd8a5d42475dbf7249c0

evands at pidgin.im evands at pidgin.im
Wed Nov 21 22:00:38 EST 2007


-----------------------------------------------------------------
Revision: cc8513f94aa94550d600cd8a5d42475dbf7249c0
Ancestor: f0ca42a609119f1883679cac103ac30114a5ea15
Author: evands at pidgin.im
Date: 2007-11-22T02:56:20
Branch: im.pidgin.pidgin

Modified files:
        libpurple/ntlm.c

ChangeLog: 

purple_cipher_context_encrypt() wants a pointer to a size_t, not a gsize

-------------- next part --------------
============================================================
--- libpurple/ntlm.c	ee684dcd08b7d105ea82da45fe17b60c5ce5a11d
+++ libpurple/ntlm.c	7b0d79a7fc99288eb355a8c227f14f1fc9b6f7ea
@@ -187,7 +187,7 @@ des_ecb_encrypt(const guint8 *plaintext,
 {
 	PurpleCipher *cipher;
 	PurpleCipherContext *context;
-	gsize outlen;
+	size_t outlen;
 
 	cipher = purple_ciphers_find_cipher("des");
 	context = purple_cipher_context_new(cipher, NULL);


More information about the Commits mailing list