summaryrefslogtreecommitdiff
path: root/sysutils/monit/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/monit/patches/patch-ab')
-rw-r--r--sysutils/monit/patches/patch-ab15
1 files changed, 0 insertions, 15 deletions
diff --git a/sysutils/monit/patches/patch-ab b/sysutils/monit/patches/patch-ab
deleted file mode 100644
index 8e9c149db06..00000000000
--- a/sysutils/monit/patches/patch-ab
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2007/04/30 20:53:54 heinz Exp $
-
-Shut up warnings about "subscript has type char"
-
---- p.y.orig 2007-01-12 22:17:12.000000000 +0100
-+++ p.y
-@@ -3320,7 +3320,7 @@ static int cleanup_hash_string(char *has
-
- if (isxdigit((int) hashstring[i])) {
-
-- hashstring[j]=tolower(hashstring[i]);
-+ hashstring[j]=tolower((int)hashstring[i]);
- j++;
-
- }