diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2010-06-04 06:12:00 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2010-06-04 06:12:00 +0000 |
commit | d0dc0016601c19cc9e632af1cfd801fdea0bbd5e (patch) | |
tree | f691b289bb933ea25f6a7ebc983d15b9119e8342 /shells | |
parent | db9f34be728e58931a09d03fa1d976c3266cc673 (diff) | |
download | ports-d0dc0016601c19cc9e632af1cfd801fdea0bbd5e.tar.gz ports-d0dc0016601c19cc9e632af1cfd801fdea0bbd5e.zip |
Notes
Diffstat (limited to 'shells')
-rw-r--r-- | shells/fd/Makefile | 2 | ||||
-rw-r--r-- | shells/fd/distinfo | 6 | ||||
-rw-r--r-- | shells/fd/files/patch-string.c | 15 |
3 files changed, 4 insertions, 19 deletions
diff --git a/shells/fd/Makefile b/shells/fd/Makefile index d0a358053080..00d5df933f4d 100644 --- a/shells/fd/Makefile +++ b/shells/fd/Makefile @@ -6,7 +6,7 @@ # PORTNAME= fd -PORTVERSION= 3.00f +PORTVERSION= 3.00g CATEGORIES= shells net MASTER_SITES= http://hp.vector.co.jp/authors/VA012337/soft/fd/ \ ftp://ftp.unixusers.net/src/fdclone/ diff --git a/shells/fd/distinfo b/shells/fd/distinfo index 5b7139cc71e9..096faff79077 100644 --- a/shells/fd/distinfo +++ b/shells/fd/distinfo @@ -1,3 +1,3 @@ -MD5 (FD-3.00f.tar.gz) = 1b644d9cb1eedfbe4a61009b8e841d09 -SHA256 (FD-3.00f.tar.gz) = 8219998a222bbcf24901ba22b1294ac2f4cc11d64e538f04171642175f4b82c4 -SIZE (FD-3.00f.tar.gz) = 921929 +MD5 (FD-3.00g.tar.gz) = 9ed477435023be93634fa897e8b9f354 +SHA256 (FD-3.00g.tar.gz) = c72c3db87722fdf216130bc210b855988bbc29353c1287c5070c3d4cffa0f995 +SIZE (FD-3.00g.tar.gz) = 922482 diff --git a/shells/fd/files/patch-string.c b/shells/fd/files/patch-string.c deleted file mode 100644 index c8c4348be1e2..000000000000 --- a/shells/fd/files/patch-string.c +++ /dev/null @@ -1,15 +0,0 @@ -diff -ur ../old/FD-3.00f/string.c ./string.c ---- ../old/FD-3.00f/string.c Sat May 29 00:00:00 2010 -+++ ./string.c Sat May 29 19:52:52 2010 -@@ -43,7 +43,10 @@ - { - for (; n-- > 0; s++) { - if (*s == c) return((char *)s); -- else if (iswchar(s, 0)) s++; -+ else if (iswchar(s, 0)) { -+ if (n-- <= 0) break; -+ s++; -+ } - } - - return(NULL); |