aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-05-24 17:06:59 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-05-24 17:06:59 +0000
commitc408bd5e903da0441f461aa564095ec581cb3cfd (patch)
tree40e464e712dbed7b55f45bc9f62b3b11388e31fe /src/command.c
parent93b96edacc4a3a3e0ca32bec6cdbf96a1c068850 (diff)
downloadmpd-c408bd5e903da0441f461aa564095ec581cb3cfd.tar.gz
mpd-c408bd5e903da0441f461aa564095ec581cb3cfd.tar.xz
mpd-c408bd5e903da0441f461aa564095ec581cb3cfd.zip
Don't list playlists in lsinfo if the path isn't the root directory (they
can't be loaded anyway). git-svn-id: https://svn.musicpd.org/mpd/trunk@6244 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/command.c b/src/command.c
index 107df3275..c8f39472d 100644
--- a/src/command.c
+++ b/src/command.c
@@ -402,17 +402,18 @@ static int handleListPlaylistInfo(int fd, int *permission,
static int handleLsInfo(int fd, int *permission, int argc, char *argv[])
{
- if (argc == 1) {
- if (printDirectoryInfo(fd, NULL) < 0)
- return -1;
- else
- return lsPlaylists(fd, "");
- } else {
- if (printDirectoryInfo(fd, argv[1]) < 0)
- return -1;
- else
- return lsPlaylists(fd, argv[1]);
- }
+ char *path = "";
+
+ if (argc == 2)
+ path = argv[1];
+
+ if (printDirectoryInfo(fd, path) < 0)
+ return -1;
+
+ if (isRootDirectory(path))
+ return lsPlaylists(fd, path);
+
+ return 0;
}
static int handleRm(int fd, int *permission, int argc, char *argv[])