aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-07 16:17:21 +0100
committerMax Kellermann <max@duempel.org>2008-11-07 16:17:21 +0100
commit3eca95ac1cb786d1aef59fd141d75661903c039a (patch)
treef548c5140c6642aa26ad0cea2c59393dd458b1a4 /src/screen.c
parentc238364f6833320fee4256226af650347d5a751b (diff)
downloadmpd-3eca95ac1cb786d1aef59fd141d75661903c039a.tar.gz
mpd-3eca95ac1cb786d1aef59fd141d75661903c039a.tar.xz
mpd-3eca95ac1cb786d1aef59fd141d75661903c039a.zip
mpdclient: removed _utf8 suffix from function names
All functions must receive UTF-8 file names. Delete all which still work with locale strings, and remove the _utf8 suffix from the others.
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c
index 17641df99..c8ba72989 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -758,7 +758,7 @@ screen_client_cmd(mpdclient_t *c, command_t cmd)
break;
case CMD_DB_UPDATE:
if (!c->status->updatingDb) {
- if( mpdclient_cmd_db_update_utf8(c,NULL)==0 )
+ if( mpdclient_cmd_db_update(c,NULL)==0 )
screen_status_printf(_("Database update started!"));
} else
screen_status_printf(_("Database update running..."));