diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-06-08 08:43:34 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-06-08 08:43:34 +0000 |
commit | f8bb39031559920bba04bffef777ea4b273f271a (patch) | |
tree | 2e0ab77abedf736fd38b6d57bbb65f8317f82eaa /audio/xhippo/files/patch-aa | |
parent | a0a76f0e1dc70d3ed6556493177767d5931c0ef7 (diff) |
Notes
Diffstat (limited to 'audio/xhippo/files/patch-aa')
-rw-r--r-- | audio/xhippo/files/patch-aa | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/audio/xhippo/files/patch-aa b/audio/xhippo/files/patch-aa new file mode 100644 index 000000000000..a3017fa71d24 --- /dev/null +++ b/audio/xhippo/files/patch-aa @@ -0,0 +1,18 @@ +--- callbacks.c.orig Wed Jun 6 09:05:30 2001 ++++ callbacks.c Wed Jun 6 09:07:03 2001 +@@ -428,11 +428,12 @@ + if (!(*++q == '\n')) break; + *q = '\0'; + if (strlen(p) > 5 && !strncmp(p, "file:", 5)) { +- if (filetype(p + 5) == 2) { ++#ifdef HAVE_NFTW ++ if (filetype(p + 5) == 2) + add_directory(p + 5); +- } else { ++#endif ++ if (filetype(p + 5) != 2) + add_file(p + 5); +- } + } + p = q + 1; + } |