diff options
author | Max Kellermann <max@duempel.org> | 2008-10-09 15:23:37 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-10-11 19:21:49 -0700 |
commit | a24d3738e35d509aa180fffa127abac8057101cf (patch) | |
tree | e2f3738f9e0a21308d6092932662a2a559cdd8ca /src/command.c | |
parent | d296861ea05101450b3f3147f6cfcd134486a384 (diff) | |
download | mpd-a24d3738e35d509aa180fffa127abac8057101cf.tar.gz mpd-a24d3738e35d509aa180fffa127abac8057101cf.tar.xz mpd-a24d3738e35d509aa180fffa127abac8057101cf.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 '')
-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 0f9852592..aafb88418 100644 --- a/src/command.c +++ b/src/command.c @@ -21,6 +21,7 @@ #include "ls.h" #include "database.h" #include "directory.h" +#include "directory_print.h" #include "update.h" #include "volume.h" #include "stats.h" |