summaryrefslogtreecommitdiff
path: root/misc/kdepim3/patches/patch-bc
diff options
context:
space:
mode:
Diffstat (limited to 'misc/kdepim3/patches/patch-bc')
-rw-r--r--misc/kdepim3/patches/patch-bc24
1 files changed, 0 insertions, 24 deletions
diff --git a/misc/kdepim3/patches/patch-bc b/misc/kdepim3/patches/patch-bc
deleted file mode 100644
index e90641e801d..00000000000
--- a/misc/kdepim3/patches/patch-bc
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-bc,v 1.1 2004/11/08 23:53:20 shannonjr Exp $
-
---- libkdenetwork/libgpgme-copy/gpgme/engine-gpgsm.c.orig 2004-06-25 02:57:52.000000000 -0600
-+++ libkdenetwork/libgpgme-copy/gpgme/engine-gpgsm.c
-@@ -27,6 +27,9 @@
- #include <sys/types.h>
- #include <assert.h>
- #include <unistd.h>
-+#if HAVE_RFUNCS_H
-+#include <rfuncs.h>
-+#endif
- #include <locale.h>
- #include <fcntl.h> /* FIXME */
- #include <errno.h>
-@@ -448,7 +451,8 @@ gpgsm_new (void **engine, const char *lc
-
- if (isatty (1))
- {
-- if (ttyname_r (1, dft_ttyname, sizeof (dft_ttyname)))
-+ /* ttyname_r() return numeric status */
-+ if (err = ttyname_r (1, dft_ttyname, sizeof (dft_ttyname)))
- {
- err = gpg_error_from_errno (errno);
- goto leave;