diff options
author | Daniel Dickman <daniel@cvs.openbsd.org> | 2014-09-21 05:29:48 +0000 |
---|---|---|
committer | Daniel Dickman <daniel@cvs.openbsd.org> | 2014-09-21 05:29:48 +0000 |
commit | 86c8783c7a679974ec80b702de73bc7d7cba734b (patch) | |
tree | 39ec04d55b1780ab772741e2ac8ec338a09070b8 /usr.bin | |
parent | a54092ec6391f9b6119b65b33bb9291a4cabbd63 (diff) |
Fix an invalid escape sequence.
ok nicm@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cu/xmodem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cu/xmodem.c b/usr.bin/cu/xmodem.c index c42441feb05..a542e6f457b 100644 --- a/usr.bin/cu/xmodem.c +++ b/usr.bin/cu/xmodem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xmodem.c,v 1.6 2013/11/12 13:54:51 deraadt Exp $ */ +/* $OpenBSD: xmodem.c,v 1.7 2014/09/21 05:29:47 daniel Exp $ */ /* * Copyright (c) 2012 Nicholas Marriott <nicm@openbsd.org> @@ -146,7 +146,7 @@ xmodem_send(const char *file) else if (c == XMODEM_NAK) crc_mode = 0; else { - cu_warnx("%s: unexpected response \%03hho", file, c); + cu_warnx("%s: unexpected response \\%03hho", file, c); goto fail; } @@ -188,7 +188,7 @@ xmodem_send(const char *file) if (c == XMODEM_ACK) break; if (c != XMODEM_NAK) { - cu_warnx("%s: unexpected response \%03hho", + cu_warnx("%s: unexpected response \\%03hho", file, c); } } |