summaryrefslogtreecommitdiffstats
path: root/usr.bin/talk/talk.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1998-08-18 04:02:09 +0000
committermillert <millert@openbsd.org>1998-08-18 04:02:09 +0000
commitbb73a7cd1089b3b50f0018dab4dd5f11dec1657f (patch)
tree7fdc73b267c7824a66d20e058cc7ba858bc698bb /usr.bin/talk/talk.c
parentopenbsd (diff)
downloadwireguard-openbsd-bb73a7cd1089b3b50f0018dab4dd5f11dec1657f.tar.xz
wireguard-openbsd-bb73a7cd1089b3b50f0018dab4dd5f11dec1657f.zip
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/talk.c')
-rw-r--r--usr.bin/talk/talk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/talk/talk.c b/usr.bin/talk/talk.c
index f7be4c67dfe..c662ef5511c 100644
--- a/usr.bin/talk/talk.c
+++ b/usr.bin/talk/talk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: talk.c,v 1.3 1998/04/28 22:13:31 pjanzen Exp $ */
+/* $OpenBSD: talk.c,v 1.4 1998/08/18 04:02:24 millert Exp $ */
/* $NetBSD: talk.c,v 1.3 1994/12/09 02:14:25 jtc Exp $ */
/*
@@ -44,15 +44,15 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)talk.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: talk.c,v 1.3 1998/04/28 22:13:31 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: talk.c,v 1.4 1998/08/18 04:02:24 millert Exp $";
#endif /* not lint */
#include "talk.h"
/*
- * talk: A visual form of write. Using sockets, a two way
- * connection is set up between the two people talking.
- * With the aid of curses, the screen is split into two
+ * talk: A visual form of write. Using sockets, a two way
+ * connection is set up between the two people talking.
+ * With the aid of curses, the screen is split into two
* windows, and each users text is added to the window,
* one character at a time...
*