dialup tty semantic is wrong
authorderaadt <deraadt@openbsd.org>
Sun, 1 Sep 1996 13:12:35 +0000 (13:12 +0000)
committerderaadt <deraadt@openbsd.org>
Sun, 1 Sep 1996 13:12:35 +0000 (13:12 +0000)
sbin/dump/dump.h
sbin/dump/optr.c

index 9257005..369e97c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dump.h,v 1.2 1996/06/23 14:30:10 deraadt Exp $        */
+/*     $OpenBSD: dump.h,v 1.3 1996/09/01 13:12:35 deraadt Exp $        */
 /*     $NetBSD: dump.h,v 1.9 1995/03/18 14:54:57 cgd Exp $     */
 
 /*-
@@ -149,7 +149,6 @@ void        interrupt __P((int signo));     /* in case operator bangs on console */
 #define        X_ABORT         3       /* abort dump; don't attempt checkpointing */
 
 #define        OPGRENT "operator"              /* group entry to notify */
-#define DIALUP "ttyd"                  /* prefix for dialups */
 
 struct fstab *fstabsearch __P((char *key));    /* search fs_file and fs_spec */
 
index 3c0451d..2002d39 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: optr.c,v 1.6 1996/08/06 17:47:15 deraadt Exp $        */
+/*     $OpenBSD: optr.c,v 1.7 1996/09/01 13:12:35 deraadt Exp $        */
 /*     $NetBSD: optr.c,v 1.4 1996/05/18 16:16:17 jtk Exp $     */
 
 /*-
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)optr.c     8.2 (Berkeley) 1/6/94";
 #else
-static char rcsid[] = "$OpenBSD: optr.c,v 1.6 1996/08/06 17:47:15 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: optr.c,v 1.7 1996/09/01 13:12:35 deraadt Exp $";
 #endif
 #endif /* not lint */
 
@@ -249,11 +249,6 @@ broadcast(message)
                for (np = gp->gr_mem; *np; np++) {
                        if (strncmp(*np, utmp.ut_name, sizeof(utmp.ut_name)) != 0)
                                continue;
-                       /*
-                        *      Do not send messages to operators on dialups
-                        */
-                       if (strncmp(utmp.ut_line, DIALUP, strlen(DIALUP)) == 0)
-                               continue;
 #ifdef DEBUG
                        msg("Message to %s at %s\n", *np, utmp.ut_line);
 #endif