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);