# HG changeset patch # User Evan Schoenberg # Date 1195700180 0 # Node ID 0e4549c09e6448b3f7a8fa3a12252e3d1601a878 # Parent 7a159abfa395cc530df4ba62693f6461162e2b5d purple_cipher_context_encrypt() wants a pointer to a size_t, not a gsize diff -r 7a159abfa395 -r 0e4549c09e64 libpurple/ntlm.c --- a/libpurple/ntlm.c Wed Nov 21 22:31:11 2007 +0000 +++ b/libpurple/ntlm.c Thu Nov 22 02:56:20 2007 +0000 @@ -187,7 +187,7 @@ { PurpleCipher *cipher; PurpleCipherContext *context; - gsize outlen; + size_t outlen; cipher = purple_ciphers_find_cipher("des"); context = purple_cipher_context_new(cipher, NULL);