diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 10:48:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 10:48:48 +0200 |
commit | 7b9bed8398137e90538908a24467633029b1c307 (patch) | |
tree | be142d5e64ba61acae701dcf5e459e067ab6f166 /src/command.c | |
parent | 4cfd356e1266ccf4ebb4082ca62e978dc827adc0 (diff) | |
download | mpd-7b9bed8398137e90538908a24467633029b1c307.tar.gz mpd-7b9bed8398137e90538908a24467633029b1c307.tar.xz mpd-7b9bed8398137e90538908a24467633029b1c307.zip |
directory: moved code to update.c
The source directory.c mixes several libraries: directory object
management, database management and database update, resulting in a
1000+ line monster. Move the whole database update code to update.c.
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c index cf61fa183..5a9448498 100644 --- a/src/command.c +++ b/src/command.c @@ -21,6 +21,7 @@ #include "playlist.h" #include "ls.h" #include "directory.h" +#include "update.h" #include "volume.h" #include "stats.h" #include "list.h" |