summaryrefslogtreecommitdiff
path: root/x11/rxvt-unicode/files/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'x11/rxvt-unicode/files/patch-ad')
-rw-r--r--x11/rxvt-unicode/files/patch-ad20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11/rxvt-unicode/files/patch-ad b/x11/rxvt-unicode/files/patch-ad
deleted file mode 100644
index c057993b80dc..000000000000
--- a/x11/rxvt-unicode/files/patch-ad
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/command.c.orig Thu Apr 5 03:52:39 2001
-+++ src/command.c Fri Jun 22 13:36:57 2001
-@@ -322,7 +322,7 @@
- ttydev = tty_name;
-
- # define PTYCHAR1 "pqrstuvwxyz"
--# define PTYCHAR2 "0123456789abcdef"
-+# define PTYCHAR2 "0123456789abcdefghijklmnopqrstuv"
- for (c1 = PTYCHAR1; *c1; c1++) {
- ptydev[len] = ttydev[len] = *c1;
- for (c2 = PTYCHAR2; *c2; c2++) {
-@@ -2376,7 +2376,7 @@
- unsigned char buf[256];
-
- va_start(arg_ptr, fmt);
-- vsprintf(buf, fmt, arg_ptr);
-+ vsnprintf(buf, sizeof(buf), fmt, arg_ptr);
- va_end(arg_ptr);
- tt_write(buf, strlen(buf));
- }