diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-18 04:02:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-18 04:02:27 +0000 |
commit | 0fdee9fc4c513111890cb276e3050734c0e8b8c9 (patch) | |
tree | 5cab468ea847a2637773683e95a786710b7383b8 /usr.bin/talk/look_up.c | |
parent | 8a60a215e4534c61e81ad6fe5e0b4833e1664a95 (diff) |
Some changes inspired by FreeBSD...
o Kill annoying spaces at the end of lines
o sigaction, not sigvec
o warn/err where sensible
o hstrerror() not herror()
o defaults for erase, kill, and werase if not set
o kill a needless refresh() after the beeps that was messing up the screen
Diffstat (limited to 'usr.bin/talk/look_up.c')
-rw-r--r-- | usr.bin/talk/look_up.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/talk/look_up.c b/usr.bin/talk/look_up.c index 9550026f8fb..114ed88c4fe 100644 --- a/usr.bin/talk/look_up.c +++ b/usr.bin/talk/look_up.c @@ -1,4 +1,4 @@ -/* $OpenBSD: look_up.c,v 1.4 1998/04/28 22:13:29 pjanzen Exp $ */ +/* $OpenBSD: look_up.c,v 1.5 1998/08/18 04:02:18 millert Exp $ */ /* $NetBSD: look_up.c,v 1.3 1994/12/09 02:14:21 jtc Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)look_up.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: look_up.c,v 1.4 1998/04/28 22:13:29 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: look_up.c,v 1.5 1998/08/18 04:02:18 millert Exp $"; #endif /* not lint */ #include "talk.h" @@ -66,8 +66,8 @@ check_local() if (!look_for_invite(&response)) return (0); /* - * There was an invitation waiting for us, - * so connect with the other (hopefully waiting) party + * There was an invitation waiting for us, + * so connect with the other (hopefully waiting) party */ current_state = "Waiting to connect with caller"; do { @@ -81,7 +81,7 @@ check_local() if (errno == ECONNREFUSED) { /* * The caller gave up, but his invitation somehow - * was not cleared. Clear it and initiate an + * was not cleared. Clear it and initiate an * invitation. (We know there are no newer invitations, * the talkd works LIFO.) */ |