aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/patches/flagstore2.diff
diff options
context:
space:
mode:
Diffstat (limited to 'service/src/patches/flagstore2.diff')
-rw-r--r--service/src/patches/flagstore2.diff11
1 files changed, 0 insertions, 11 deletions
diff --git a/service/src/patches/flagstore2.diff b/service/src/patches/flagstore2.diff
deleted file mode 100644
index b34a0c0..0000000
--- a/service/src/patches/flagstore2.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/service/src/safe_util.c
-+++ b/service/src/safe_util.c
-@@ -58,7 +58,7 @@ mhash(const char *str, int len)
- srand(v);
-
- for (bp = buf, i = 0; i < MHASHLEN / 2; i++)
-- bp += sprintf(bp, "%02x", str[i % len] ^ (rand() % 256));
-+ bp += sprintf(bp, "%02x", (unsigned char) str[i % len] ^ (rand() % 256));
-
- return buf;
- }