diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-06 11:57:21 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-06 11:57:21 +0000 |
commit | 0d6a98616e70dc4a3d9c4f3bedac590858c50c2e (patch) | |
tree | 40f2e8138a83ef5df03cb0c328a4bf54987f2fdc /misc | |
parent | Toxine is a text user interface using the xine library. It permit to playback (diff) |
- Fix "Aborted!" messages when entering commands
PR: ports/83016
Submitted by: Kevin Oberman <oberman@es.net>
Notes
Notes:
svn path=/head/; revision=138579
Diffstat (limited to 'misc')
-rw-r--r-- | misc/most/Makefile | 1 | ||||
-rw-r--r-- | misc/most/files/patch-src-window.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/misc/most/Makefile b/misc/most/Makefile index 516b357f8f32..ec5e45bd3be1 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 000000000000..27e816aa1caf --- /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; + |