From 7d7b69e576500522a011627d7937e255aa7c16c7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 13:48:37 +0200 Subject: 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. --- src/dbUtils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/dbUtils.h') diff --git a/src/dbUtils.h b/src/dbUtils.h index 89b69bfc3..592b62e95 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -23,9 +23,9 @@ int printAllIn(int fd, const char *name); -int addAllIn(int fd, const char *name); +int addAllIn(const char *name); -int addAllInToStoredPlaylist(int fd, const char *name, const char *utf8file); +int addAllInToStoredPlaylist(const char *name, const char *utf8file); int printInfoForAllIn(int fd, const char *name); @@ -37,9 +37,9 @@ int findSongsIn(int fd, const char *name, int numItems, LocateTagItem * items); int searchStatsForSongsIn(int fd, const char *name, int numItems, LocateTagItem * items); -int countSongsIn(int fd, const char *name); +int countSongsIn(const char *name); -unsigned long sumSongTimesIn(int fd, const char *name); +unsigned long sumSongTimesIn(const char *name); int listAllUniqueTags(int fd, int type, int numConditiionals, LocateTagItem * conditionals); -- cgit v1.2.3