aboutsummaryrefslogtreecommitdiff
path: root/ftp/oftpd/files/patch-file_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/oftpd/files/patch-file_list.c')
-rw-r--r--ftp/oftpd/files/patch-file_list.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/ftp/oftpd/files/patch-file_list.c b/ftp/oftpd/files/patch-file_list.c
deleted file mode 100644
index 22456ee06309..000000000000
--- a/ftp/oftpd/files/patch-file_list.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/file_list.c.old Sat Mar 31 11:27:00 2001
-+++ src/file_list.c Sat Mar 31 11:37:38 2001
-@@ -186,7 +186,11 @@
- /* do a glob() */
- memset(&glob_buf, 0, sizeof(glob_buf));
- glob_ret = glob(pattern, GLOB_ERR, NULL, &glob_buf);
-+#ifndef GLOB_NOMATCH /* FreeBSD rocks your world */
-+ if (glob_ret == GLOB_NOCHECK) {
-+#else
- if (glob_ret == GLOB_NOMATCH) {
-+#endif
- fdprintf(out, "total 0\r\n");
- return 1;
- } else if (glob_ret == GLOB_NOSPACE) {