aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-08 11:07:55 +0200
committerEric Wong <normalperson@yhbt.net>2008-10-11 19:21:48 -0700
commit4629f646077109f7c6185aab92560da52c237412 (patch)
treeaf62c1fd2d29c53d137f8b390682492bf0ef102d /src/command.c
parent0576b8abf8b2fd25105f6e0190a93ddec298e9fb (diff)
downloadmpd-4629f646077109f7c6185aab92560da52c237412.tar.gz
mpd-4629f646077109f7c6185aab92560da52c237412.tar.xz
mpd-4629f646077109f7c6185aab92560da52c237412.zip
database: renamed functions, "db_" prefix and no CamelCase
Yet another CamelCase removal patch.
Diffstat (limited to '')
-rw-r--r--src/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c
index 7d1e2f306..0f9852592 100644
--- a/src/command.c
+++ b/src/command.c
@@ -564,7 +564,7 @@ static int handleLsInfo(int fd, mpd_unused int *permission,
if (argc == 2)
path = argv[1];
- if (!(directory = getDirectory(path))) {
+ if (!(directory = db_get_directory(path))) {
commandError(fd, ACK_ERROR_NO_EXIST, "directory not found");
return -1;
}