summaryrefslogtreecommitdiff
path: root/net/totd
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2018-09-29 10:54:17 +0000
committermaya <maya@pkgsrc.org>2018-09-29 10:54:17 +0000
commit3f3dc7a2375e9b03e005fa94e25fb036a1528b57 (patch)
tree5b75c897c2163a0def56bae5d537eb45bb66abc4 /net/totd
parent30cd46b27ae52140f741e31776d290e21e09ee69 (diff)
downloadpkgsrc-3f3dc7a2375e9b03e005fa94e25fb036a1528b57.tar.gz
totd: remove patches.
Diffstat (limited to 'net/totd')
-rw-r--r--net/totd/patches/patch-aa24
1 files changed, 0 insertions, 24 deletions
diff --git a/net/totd/patches/patch-aa b/net/totd/patches/patch-aa
deleted file mode 100644
index 278ebe67fd5..00000000000
--- a/net/totd/patches/patch-aa
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2006/06/26 11:20:47 rillig Exp $
-
-Fixed gcc warning: subscript has type `char'.
-
---- totd.c.orig 2005-02-02 12:10:31.000000000 +0100
-+++ totd.c 2006-06-26 13:18:42.000000000 +0200
-@@ -167,7 +167,7 @@ int main (int argc, char **argv) {
- }
-
- if (T.user) {
-- if (isdigit(T.user[0])) {
-+ if (isdigit((unsigned char)(T.user[0]))) {
- T.uid = atoi(T.user);
- pwd_p = NULL;
- } else {
-@@ -191,7 +191,7 @@ to: %s", T.user);
- }
-
- if (T.group) {
-- if (isdigit(T.group[0])) {
-+ if (isdigit((unsigned char)(T.group[0]))) {
- T.gid = atoi(T.group);
- } else {
- struct group *grp_p;