diff options
author | pav <pav@FreeBSD.org> | 2005-07-06 11:57:21 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-07-06 11:57:21 +0000 |
commit | b84990defdf9bcfc8f01dcd6060c1e10d3e1b98d (patch) | |
tree | 3cebc1e890fec615d4b7ae01b48bfedbcf35706e | |
parent | 104d6947b46e18fda55f6464a7fc3c405b63918e (diff) | |
download | FreeBSD-ports-b84990defdf9bcfc8f01dcd6060c1e10d3e1b98d.zip FreeBSD-ports-b84990defdf9bcfc8f01dcd6060c1e10d3e1b98d.tar.gz |
- Fix "Aborted!" messages when entering commands
PR: ports/83016
Submitted by: Kevin Oberman <oberman@es.net>
-rw-r--r-- | misc/most/Makefile | 1 | ||||
-rw-r--r-- | misc/most/files/patch-src-window.c | 11 | ||||
-rw-r--r-- | sysutils/most/Makefile | 1 | ||||
-rw-r--r-- | sysutils/most/files/patch-src-window.c | 11 |
4 files changed, 24 insertions, 0 deletions
diff --git a/misc/most/Makefile b/misc/most/Makefile index 516b357..ec5e45b 100644 --- a/misc/most/Makefile +++ b/misc/most/Makefile @@ -7,6 +7,7 @@ PORTNAME= most PORTVERSION= 4.10.1 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ftp://space.mit.edu/pub/davis/most/ \ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/most/ \ diff --git a/misc/most/files/patch-src-window.c b/misc/most/files/patch-src-window.c new file mode 100644 index 0000000..27e816a --- /dev/null +++ b/misc/most/files/patch-src-window.c @@ -0,0 +1,11 @@ +--- src/window.c.orig Tue Feb 22 17:19:49 2005 ++++ src/window.c Wed Jul 6 13:54:14 2005 +@@ -238,7 +238,7 @@ + + int most_read_from_minibuffer(char *prompt, char *what, unsigned int buflen) + { +- int i; ++ int i = 0; + char *buf; + unsigned int len; + diff --git a/sysutils/most/Makefile b/sysutils/most/Makefile index 516b357..ec5e45b 100644 --- a/sysutils/most/Makefile +++ b/sysutils/most/Makefile @@ -7,6 +7,7 @@ PORTNAME= most PORTVERSION= 4.10.1 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ftp://space.mit.edu/pub/davis/most/ \ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/most/ \ diff --git a/sysutils/most/files/patch-src-window.c b/sysutils/most/files/patch-src-window.c new file mode 100644 index 0000000..27e816a --- /dev/null +++ b/sysutils/most/files/patch-src-window.c @@ -0,0 +1,11 @@ +--- src/window.c.orig Tue Feb 22 17:19:49 2005 ++++ src/window.c Wed Jul 6 13:54:14 2005 +@@ -238,7 +238,7 @@ + + int most_read_from_minibuffer(char *prompt, char *what, unsigned int buflen) + { +- int i; ++ int i = 0; + char *buf; + unsigned int len; + |