summaryrefslogtreecommitdiff
path: root/Ports/emu2/patches/dosnames.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Ports/emu2/patches/dosnames.patch')
-rw-r--r--Ports/emu2/patches/dosnames.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/Ports/emu2/patches/dosnames.patch b/Ports/emu2/patches/dosnames.patch
deleted file mode 100644
index e4b0860738..0000000000
--- a/Ports/emu2/patches/dosnames.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-+++ emu2-master/src/dosnames.c 2021-04-14 07:15:44.036839086 -0700
-@@ -9,6 +9,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <strings.h>
- #include <sys/stat.h>
-
- // DOS directory entries.
-@@ -589,7 +590,7 @@
- static struct dos_file_list *find_first_file(char *fspec)
- {
- // Now, separate the path to the spec
-- char *glob, *unixpath, *p = rindex(fspec, '/');
-+ char *glob, *unixpath, *p = strrchr(fspec, '/');
- if(!p)
- {
- glob = fspec;