summaryrefslogtreecommitdiff
path: root/emulators/yape/files/patch-archdep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/yape/files/patch-archdep.cpp')
-rw-r--r--emulators/yape/files/patch-archdep.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/emulators/yape/files/patch-archdep.cpp b/emulators/yape/files/patch-archdep.cpp
deleted file mode 100644
index be12ad264c2f..000000000000
--- a/emulators/yape/files/patch-archdep.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- archdep.cpp.orig
-+++ archdep.cpp
-@@ -75,7 +75,7 @@
- int ad_makedirs(char *path)
- {
- strcpy(temp,path);
-- strcat(temp, "/yape");
-+ strcat(temp, "/.yape");
- CreateDirectory(temp, NULL);
-
- return 1;
-@@ -296,7 +296,7 @@
- // Possible buffer overflow fixed.
- strncpy(temp, path, 512);
- if (strlen(temp) > 506) return 0;
-- strcat(temp, "/yape");
-+ strcat(temp, "/.yape");
- mkdir(temp, 0777);
-
- return 1;
-@@ -307,7 +307,7 @@
- // Possible buffer overflow fixed.
- strncpy(temp, tmpchr, 512);
- if (strlen(temp) > 496) return NULL;
-- strcat( temp, "/yape/yape.conf");
-+ strcat( temp, "/.yape/yape.conf");
- return temp;
- }
-