comparison src/protocols/oscar/auth.c @ 7631:ea2d07ad05a9

[gaim-migrate @ 8255] long car rides and a power inverter can generate some interesting code tweaks committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 25 Nov 2003 07:16:11 +0000
parents be7c1468c6a7
children 9cafe038c95e
comparison
equal deleted inserted replaced
7630:2df4d470c12a 7631:ea2d07ad05a9
43 0x39, 0x86, 0xdb, 0x92, 43 0x39, 0x86, 0xdb, 0x92,
44 0x71, 0xa3, 0xb9, 0xe6, 44 0x71, 0xa3, 0xb9, 0xe6,
45 0x53, 0x7a, 0x95, 0x7c 45 0x53, 0x7a, 0x95, 0x7c
46 #endif 46 #endif
47 }; 47 };
48 int i; 48 unsigned int i;
49 49
50 for (i = 0; i < strlen(password); i++) 50 for (i = 0; i < strlen(password); i++)
51 encoded[i] = (password[i] ^ encoding_table[i]); 51 encoded[i] = (password[i] ^ encoding_table[i]);
52 52
53 return 0; 53 return 0;