diff options
author | jmz <jmz@FreeBSD.org> | 1996-11-15 22:35:50 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1996-11-15 22:35:50 +0800 |
commit | 1c95ff89babd57d3572c1225d0e6291b29affdc9 (patch) | |
tree | 0737332f528d562eb71e031e6275045e39151ca6 /comms | |
parent | b4f1357da5c40e9ac524f6b3caccbb5a4920648b (diff) | |
download | freebsd-ports-gnome-1c95ff89babd57d3572c1225d0e6291b29affdc9.tar.gz freebsd-ports-gnome-1c95ff89babd57d3572c1225d0e6291b29affdc9.tar.zst freebsd-ports-gnome-1c95ff89babd57d3572c1225d0e6291b29affdc9.zip |
Don't say that the modem line is secure!
Fixes PR ports/1888.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mgetty+sendfax/files/mgettycfg.in | 4 | ||||
-rw-r--r-- | comms/mgetty+sendfax/pkg-install | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/comms/mgetty+sendfax/files/mgettycfg.in b/comms/mgetty+sendfax/files/mgettycfg.in index a66446a02119..f014f400acfb 100644 --- a/comms/mgetty+sendfax/files/mgettycfg.in +++ b/comms/mgetty+sendfax/files/mgettycfg.in @@ -67,7 +67,7 @@ foreach $tty (@ttys) { foreach $port (split) { if ($tty =~ /^\s*$port/) { print STDERR "replacing line $tty"; - $tty = "$port\t\"$prefix/sbin/mgetty\"\tunknown on secure\n"; + $tty = "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"; $replaced{$port} = 1; } } @@ -76,7 +76,7 @@ $_ = $devices; foreach $port (split) { if (!$replaced{$port}) { print STDERR "adding port $port\n"; - push (@ttys, "$port\t\"$prefix/sbin/mgetty\"\tunknown on secure\n"); + push (@ttys, "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"); } } system ("mv -f /etc/ttys /etc/ttys.old"); diff --git a/comms/mgetty+sendfax/pkg-install b/comms/mgetty+sendfax/pkg-install index a66446a02119..f014f400acfb 100644 --- a/comms/mgetty+sendfax/pkg-install +++ b/comms/mgetty+sendfax/pkg-install @@ -67,7 +67,7 @@ foreach $tty (@ttys) { foreach $port (split) { if ($tty =~ /^\s*$port/) { print STDERR "replacing line $tty"; - $tty = "$port\t\"$prefix/sbin/mgetty\"\tunknown on secure\n"; + $tty = "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"; $replaced{$port} = 1; } } @@ -76,7 +76,7 @@ $_ = $devices; foreach $port (split) { if (!$replaced{$port}) { print STDERR "adding port $port\n"; - push (@ttys, "$port\t\"$prefix/sbin/mgetty\"\tunknown on secure\n"); + push (@ttys, "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"); } } system ("mv -f /etc/ttys /etc/ttys.old"); |