diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:48:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:48:37 +0200 |
commit | f320c9fa1dc2268fbd97ba9cb00140276c0a2e23 (patch) | |
tree | bd4102bc4a1d6914777305bf73690f3a8c5c7fa0 /src/directory.h | |
parent | 528be8a0a9b8f9978b3968ab855e69a7ec2935d4 (diff) | |
download | mpd-f320c9fa1dc2268fbd97ba9cb00140276c0a2e23.tar.gz mpd-f320c9fa1dc2268fbd97ba9cb00140276c0a2e23.tar.xz mpd-f320c9fa1dc2268fbd97ba9cb00140276c0a2e23.zip |
directory: don't pass fd to traverseAllIn()
This patch continues the work of the previous patch: don't pass a file
descriptor at all to traverseAllIn(). Since this fd was only used to
report "directory not found" errors, we can easily move that check to
the caller. This is a great relief, since it removes the dependency
on a client connection from a lot of enumeration functions.
Diffstat (limited to 'src/directory.h')
-rw-r--r-- | src/directory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directory.h b/src/directory.h index 02a6b22d4..19dada309 100644 --- a/src/directory.h +++ b/src/directory.h @@ -64,7 +64,7 @@ Song *getSongFromDB(const char *file); time_t getDbModTime(void); -int traverseAllIn(int fd, const char *name, +int traverseAllIn(const char *name, int (*forEachSong) (Song *, void *), int (*forEachDir) (Directory *, void *), void *data); |