diff options
author | phk <phk@FreeBSD.org> | 1994-07-24 02:44:28 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-07-24 02:44:28 +0000 |
commit | 002b4706b8758634d3a13079b79d2876a838b570 (patch) | |
tree | 2adbe5e43b4801cf6304db377d409a9e6614d07f /libexec/talkd | |
parent | 81acd5162d700263e1ee3682531cce1a1d1430d1 (diff) | |
download | FreeBSD-src-002b4706b8758634d3a13079b79d2876a838b570.zip FreeBSD-src-002b4706b8758634d3a13079b79d2876a838b570.tar.gz |
Reviewed by: phk
changed ^G to \007
Diffstat (limited to 'libexec/talkd')
-rw-r--r-- | libexec/talkd/announce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/talkd/announce.c b/libexec/talkd/announce.c index e8c9915..9022a12 100644 --- a/libexec/talkd/announce.c +++ b/libexec/talkd/announce.c @@ -130,7 +130,7 @@ print_mesg(tty, tf, request, remote_machine) max_size = max(max_size, sizes[i]); i++; bptr = big_buf; - *bptr++ = ''; /* send something to wake them up */ + *bptr++ = '\007'; /* send something to wake them up */ *bptr++ = '\r'; /* add a \r in case of raw mode */ *bptr++ = '\n'; for (i = 0; i < N_LINES; i++) { |