rc4.c and sha1.c needs to include libpurple/util.h as well
author |
Gary Kramlich <grim@reaperworld.com> |
date |
Thu, 17 Feb 2011 05:05:03 +0000 |
parents |
45f318d865ac |
children |
fcffb1b97e3f |
files |
libpurple/ciphers/rc4.c libpurple/ciphers/sha1.c |
diffstat |
2 files changed, 2 insertions(+), 0 deletions(-)
[+]
|
line diff
--- a/libpurple/ciphers/rc4.c Thu Feb 17 05:03:58 2011 +0000
+++ b/libpurple/ciphers/rc4.c Thu Feb 17 05:05:03 2011 +0000
@@ -20,6 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include <cipher.h>
+#include <util.h>
struct RC4Context {
guchar state[256];
--- a/libpurple/ciphers/sha1.c Thu Feb 17 05:03:58 2011 +0000
+++ b/libpurple/ciphers/sha1.c Thu Feb 17 05:05:03 2011 +0000
@@ -20,6 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include <cipher.h>
+#include <util.h>
#if !GLIB_CHECK_VERSION(2,16,0)