X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=command.c;h=9d473019c009f20f5c6f1e4b517712c8a254d49f;hb=3e514007f72825597eaf68ff33339a8eb0ad420b;hp=b07020a7cfd5d72aadfa9559e44ff323683251b9;hpb=dfaa2c1b2505dc2e192bd6e8baa80a5d02ed78b7;p=paraslash.git diff --git a/command.c b/command.c index b07020a7..9d473019 100644 --- a/command.c +++ b/command.c @@ -582,7 +582,7 @@ static int com_si(int fd, int argc, __unused char **argv) "mallinfo: %d\n" "connections (active/accepted/total): %u/%u/%u\n" "current loglevel: %i\n" - "supported database tools: %s\n" + "supported audio file selectors: %s\n" "supported audio formats: %s\n" "supported senders: %s\n" "%s", @@ -735,7 +735,7 @@ static struct server_command *get_cmd_ptr(char *name, char **handler) /* not found, look for commands supported by the current selector */ mmd_lock(); if (handler) - *handler = make_message("the %s database tool", dblist[mmd->dbt_num].name); + *handler = make_message("the %s selector", dblist[mmd->dbt_num].name); cmd = dblist[mmd->dbt_num].cmd_list; mmd_unlock(); for (; cmd->name; cmd++) @@ -870,7 +870,7 @@ static int com_chs(int fd, int argc, char **argv) mmd_unlock(); return 1; } - return -E_BAD_DBTOOL; + return -E_BAD_SELECTOR; } /* next */