summaryrefslogtreecommitdiff
path: root/ftp/wu-ftpd/files/patch-af
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:11:34 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:11:34 +0000
commit991d09aec4e9b0ba9f12122d49ef31aa6de71e7b (patch)
tree289e5f7c28d6cfd0a4a81901b06639dd791602a3 /ftp/wu-ftpd/files/patch-af
parentRemove unmaintained expired ports from graphics (diff)
Remove unmaintained expired ports from ftp
2011-05-01 ftp/axyftp: Upstream disapear and distfile is no more available 2011-05-01 ftp/emacs-wget: Upstream disapear and distfile is no more available 2011-05-01 ftp/llnlxdir: Upstream disapear and distfile is no more available 2011-05-01 ftp/llnlxftp: Upstream disapear and distfile is no more available 2011-05-01 ftp/mirror: Upstream disapear and distfile is no more available 2011-05-01 ftp/moftpd: Upstream disapear and distfile is no more available 2011-05-01 ftp/wu-ftpd: Upstream disapear and distfile is no more available 2011-05-01 ftp/xrmftp: Upstream disapear and distfile is no more available 2011-05-01 ftp/yale-tftpd: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273464
Diffstat (limited to 'ftp/wu-ftpd/files/patch-af')
-rw-r--r--ftp/wu-ftpd/files/patch-af29
1 files changed, 0 insertions, 29 deletions
diff --git a/ftp/wu-ftpd/files/patch-af b/ftp/wu-ftpd/files/patch-af
deleted file mode 100644
index fd46f44ebbd3..000000000000
--- a/ftp/wu-ftpd/files/patch-af
+++ /dev/null
@@ -1,29 +0,0 @@
---- support/strcasestr.c.orig Sat Jul 1 22:36:29 2000
-+++ support/strcasestr.c Wed Oct 10 07:18:17 2001
-@@ -24,22 +24,24 @@
- $Id: strcasestr.c,v 1.5 2000/07/01 18:36:29 wuftpd Exp $
-
- ****************************************************************************/
-+#include <ctype.h>
- #include <string.h>
- /*
- * Find the first occurrence of find in s.
- */
--char *strcasestr(register char *s, register char *find)
-+char *strcasestr(const char *s, const char *find)
- {
- register char c, sc;
- register size_t len;
-
- if ((c = *find++) != 0) {
-+ c = tolower((unsigned char)c);
- len = strlen(find);
- do {
- do {
- if ((sc = *s++) == 0)
- return (NULL);
-- } while (sc != c);
-+ } while ((char)tolower((unsigned char)sc) != c);
- } while (strncasecmp(s, find, len) != 0);
- s--;
- }