summaryrefslogtreecommitdiff
path: root/ftp/ncftp2/files
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-11-10 03:10:41 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-11-10 03:10:41 +0000
commitbd990e6999d23a4ac713737af7fc03b713f29041 (patch)
treea59a2ff3ded55f8e0241dffd19706287b9447965 /ftp/ncftp2/files
parentTry to detect if tk4.x is present in /usr/local so that XF86Setup can (diff)
Update ncftp2.4.1 -> 2.4.2
Removed my patch for the extra characters in the passwd prompt caused by the long-standing (but now fixed in development sources) ncurses problem now that the author has an equivalent fix.
Notes
Notes: svn path=/head/; revision=4367
Diffstat (limited to 'ftp/ncftp2/files')
-rw-r--r--ftp/ncftp2/files/patch-ab28
1 files changed, 0 insertions, 28 deletions
diff --git a/ftp/ncftp2/files/patch-ab b/ftp/ncftp2/files/patch-ab
deleted file mode 100644
index 97726f007458..000000000000
--- a/ftp/ncftp2/files/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# This is to work around an apparent ncurses bug.. It's a slight optimisation
-# too, I think.
-#
---- Win.c.dist Wed Dec 6 13:38:47 1995
-+++ Win.c Sun Aug 18 23:08:11 1996
-@@ -1101,16 +1101,12 @@
- Exit(kExitWinFail2);
- }
-
-+ werase(gPromptWin);
- WAttr(gPromptWin, flags, 1);
-- if (addTail) {
-- mvwprintw(gPromptWin, 0,0, "%s%s", pr, kPromptTail);
-- WAttr(gPromptWin, flags, 0);
-- } else {
-- mvwprintw(gPromptWin, 0,0, "%s", pr);
-- WAttr(gPromptWin, flags, 0);
-- if (flags & kReverse)
-- wprintw(gPromptWin, " ");
-- }
-+ mvwprintw(gPromptWin, 0,0, "%s", pr);
-+ if (addTail)
-+ wprintw(gPromptWin, "%s", kPromptTail);
-+ WAttr(gPromptWin, flags, 0);
- wnoutrefresh(gPromptWin);
- werase(gInputWin);
- touchwin(gInputWin);