=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/talk/invite.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/talk/invite.c 2003/06/10 22:20:52 1.10 --- src/usr.bin/talk/invite.c 2003/09/26 04:41:48 1.11 *************** *** 1,4 **** ! /* $OpenBSD: invite.c,v 1.10 2003/06/10 22:20:52 deraadt Exp $ */ /* $NetBSD: invite.c,v 1.3 1994/12/09 02:14:18 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: invite.c,v 1.11 2003/09/26 04:41:48 deraadt Exp $ */ /* $NetBSD: invite.c,v 1.3 1994/12/09 02:14:18 jtc Exp $ */ /* *************** *** 34,40 **** #if 0 static char sccsid[] = "@(#)invite.c 8.1 (Berkeley) 6/6/93"; #endif ! static char rcsid[] = "$OpenBSD: invite.c,v 1.10 2003/06/10 22:20:52 deraadt Exp $"; #endif /* not lint */ #include "talk.h" --- 34,40 ---- #if 0 static char sccsid[] = "@(#)invite.c 8.1 (Berkeley) 6/6/93"; #endif ! static char rcsid[] = "$OpenBSD: invite.c,v 1.11 2003/09/26 04:41:48 deraadt Exp $"; #endif /* not lint */ #include "talk.h" *************** *** 102,108 **** signal(SIGALRM, re_invite); (void) setjmp(invitebuf); while ((new_sockt = accept(sockt, &rp, &rplen)) < 0) { ! if (errno == EINTR) continue; quit("Unable to connect with your party", 1); } --- 102,108 ---- signal(SIGALRM, re_invite); (void) setjmp(invitebuf); while ((new_sockt = accept(sockt, &rp, &rplen)) < 0) { ! if (errno == EINTR || errno == ECONNABORTED) continue; quit("Unable to connect with your party", 1); }