summaryrefslogtreecommitdiff
path: root/comms/xisp/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'comms/xisp/patches/patch-ae')
-rw-r--r--comms/xisp/patches/patch-ae21
1 files changed, 0 insertions, 21 deletions
diff --git a/comms/xisp/patches/patch-ae b/comms/xisp/patches/patch-ae
deleted file mode 100644
index 92dd53f4cfa..00000000000
--- a/comms/xisp/patches/patch-ae
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 1998/12/03 15:08:53 frueauf Exp $
-
---- rcio.c.orig Mon Oct 26 05:35:01 1998
-+++ rcio.c Mon Nov 30 16:25:37 1998
-@@ -155,13 +155,13 @@
- {
- char emsg[MSGLEN_ERR+1];
-
--#ifndef SUNOS5x
-+#ifdef HAVE_STRERROR
-+ sprintf(emsg, "xISP: %s: %s\n", msg, strerror(errno));
-+#else
- if (errno < sys_nerr)
- sprintf(emsg, "xISP: %s: %s\n", msg, sys_errlist[errno]);
- else
- sprintf(emsg, "xISP: %s: error #%d\n", msg, errno);
--#else
-- sprintf(emsg, "xISP: %s: %s\n", msg, strerror(errno));
- #endif
- fputs(emsg, stderr);
- exit(1);