summaryrefslogtreecommitdiff
path: root/audio/ascd/files/patch-faktory.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/ascd/files/patch-faktory.c')
-rw-r--r--audio/ascd/files/patch-faktory.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/audio/ascd/files/patch-faktory.c b/audio/ascd/files/patch-faktory.c
deleted file mode 100644
index a6802228bc89..000000000000
--- a/audio/ascd/files/patch-faktory.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- faktory.c.orig 1999-07-05 16:52:38 UTC
-+++ faktory.c
-@@ -58,9 +58,9 @@ int fak_parse_line(char *ligne, char *ke
- unsigned int pos = 0;
-
- if ((strlen(ligne) > 0) && (ligne[0] != '#')) {
-- while ((ligne[pos] != ' ') && (ligne[pos] != 9)) pos++;
-+ while (ligne[pos] && (ligne[pos] != ' ') && (ligne[pos] != 9)) pos++;
- tes_sncpy(key, ligne, pos);
-- while (((ligne[pos] == ' ') || (ligne[pos] == 9)) && (pos < strlen(ligne))) pos++;
-+ while (ligne[pos] && ((ligne[pos] == ' ') || (ligne[pos] == 9))) pos++;
- if (pos < strlen(ligne)) strcpy(arguments, ligne + pos);
- else strcpy(arguments, "");
- if (debug > 2) fprintf(stderr,"++ input: [%s]\n key: [%s]\n args: [%s]\n", ligne, key, arguments);