From c7a3bec8b2a9cbceb09335d74f9f70a30bf381e4 Mon Sep 17 00:00:00 2001 From: "psyc://psyced.org/~lynX" <@> Date: Wed, 24 Aug 2011 13:31:05 +0200 Subject: [PATCH] eh.. bignum_cmp was broken? --- world/net/library.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/net/library.i b/world/net/library.i index a02ebf2..024fa2b 100644 --- a/world/net/library.i +++ b/world/net/library.i @@ -1053,7 +1053,7 @@ int bignum_cmp(string a, string b) { // allocating a local variable to "cache" it if (strlen(a) > strlen(b)) return 1; if (strlen(a) < strlen(b)) return -1; - for (i=0; i b[i]) return 1; return -1; }