diff options
author | Max Kellermann <max@duempel.org> | 2008-10-09 15:23:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-09 15:23:37 +0200 |
commit | a0c044df11825069fc91dbc1ab9b6960886fd125 (patch) | |
tree | 3f13c65eef958641b38f0cb4ab6290f57a7c87b9 /src/command.c | |
parent | cb12eb8e231cb653ea0f7f96d3de7cdf9e504f8c (diff) | |
download | mpd-a0c044df11825069fc91dbc1ab9b6960886fd125.tar.gz mpd-a0c044df11825069fc91dbc1ab9b6960886fd125.tar.xz mpd-a0c044df11825069fc91dbc1ab9b6960886fd125.zip |
diretory: moved code to directory_save.c, directory_print.c
Remove clutter from directory.c. Everything which saves or loads
to/from the hard disk goes to directory_save.c, and code which sends
directory information to the client is moved into directory_print.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 3490c666f..c98bc20e7 100644 --- a/src/command.c +++ b/src/command.c @@ -21,6 +21,7 @@ #include "playlist.h" #include "ls.h" #include "directory.h" +#include "directory_print.h" #include "database.h" #include "update.h" #include "volume.h" |