diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:03:02 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:03:02 +0200 |
commit | c0197c58bae666ddf596d0f585cb419083cd3300 (patch) | |
tree | fd979de8026a50f4663739f713a68d6ad38caae1 /src/myfprintf.c | |
parent | 6d18e0009926773464b2749f9e39e0785ea87269 (diff) | |
download | mpd-c0197c58bae666ddf596d0f585cb419083cd3300.tar.gz mpd-c0197c58bae666ddf596d0f585cb419083cd3300.tar.xz mpd-c0197c58bae666ddf596d0f585cb419083cd3300.zip |
client: renamed all public functions
Functions which operate on the whole client list are prefixed with
"client_manager_", and functions which handle just one client just get
"client_".
Diffstat (limited to 'src/myfprintf.c')
-rw-r--r-- | src/myfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/myfprintf.c b/src/myfprintf.c index 87745671b..00b02ebd3 100644 --- a/src/myfprintf.c +++ b/src/myfprintf.c @@ -49,7 +49,7 @@ void vfdprintf(const int fd, const char *fmt, va_list args) len = strlen(buf); if (fd == STDERR_FILENO || fd == STDOUT_FILENO || - interfacePrintWithFD(fd, buf, len) < 0) + client_print(fd, buf, len) < 0) blockingWrite(fd, buf, len); } |