diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-08-31 09:25:19 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-08-31 09:25:19 +0000 |
commit | 686d4611447fe9eeb686e421dcb3e529ffa23890 (patch) | |
tree | 685d65779681211ba986c663f0543ec99691d994 /client.c | |
parent | 554f19eb05104bddf84816b732d6e7a837164310 (diff) | |
download | rtmux-686d4611447fe9eeb686e421dcb3e529ffa23890.tar.gz rtmux-686d4611447fe9eeb686e421dcb3e529ffa23890.tar.bz2 rtmux-686d4611447fe9eeb686e421dcb3e529ffa23890.zip |
Sync OpenBSD patchset 1168:
Change a log to fprintf that was missed last time around, from Tiago Cunha.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ client_main(int argc, char **argv, int flags) * flag. */ if ((cmdlist = cmd_list_parse(argc, argv, &cause)) == NULL) { - log_warnx("%s", cause); + fprintf(stderr, "%s\n", cause); return (1); } cmdflags &= ~CMD_STARTSERVER; |