Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc Fix PR security/8069 differently:



details:   https://anonhg.NetBSD.org/src/rev/f95edd87d833
branches:  trunk
changeset: 474929:f95edd87d833
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Jul 26 19:31:53 1999 +0000

description:
Fix PR security/8069 differently:
Add a new option "-S" to "nroff" and use "nroff -S" instead of "groff -S"
because "nroff" adds some other (moderately useful and important) options
to the "groff" execution.

diffstat:

 etc/man.conf |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (30 lines):

diff -r d781de6e253c -r f95edd87d833 etc/man.conf
--- a/etc/man.conf      Mon Jul 26 19:20:09 1999 +0000
+++ b/etc/man.conf      Mon Jul 26 19:31:53 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: man.conf,v 1.15 1999/07/26 18:42:21 tron Exp $
+#      $NetBSD: man.conf,v 1.16 1999/07/26 19:31:54 tron Exp $
 
 # Sheer, raging paranoia...
 _version       BSD.2
@@ -18,13 +18,13 @@
 _suffix                .0
 _build         .0.Z            /usr/bin/zcat %s
 _build         .0.gz           /usr/bin/gunzip -c %s
-_build         .[1-9ln]        /usr/bin/groff -S -Tascii -man %s
-_build         .[1-9ln].Z      /usr/bin/zcat %s | /usr/bin/groff -S -Tascii -man
-_build         .[1-9ln].gz     /usr/bin/gunzip -c %s | /usr/bin/groff -S -Tascii -man
-_build         .tbl            /usr/bin/tbl %s | /usr/bin/groff -S -Tascii -man
-_build         .tbl.Z          /usr/bin/zcat %s | /usr/bin/tbl | /usr/bin/groff -S -Tascii -man
-_build         .tbl.gz         /usr/bin/gunzip -c %s | /usr/bin/tbl | /usr/bin/groff -S -Tascii -man
-_build         .me             /usr/bin/groff -S -Tascii -me %s 2>/dev/null | cat -S -Tascii
+_build         .[1-9ln]        /usr/bin/nroff -S -man %s
+_build         .[1-9ln].Z      /usr/bin/zcat %s | /usr/bin/nroff -S -man
+_build         .[1-9ln].gz     /usr/bin/gunzip -c %s | /usr/bin/nroff -S -man
+_build         .tbl            /usr/bin/tbl %s | /usr/bin/nroff -S -man
+_build         .tbl.Z          /usr/bin/zcat %s | /usr/bin/tbl | /usr/bin/nroff -S -man
+_build         .tbl.gz         /usr/bin/gunzip -c %s | /usr/bin/tbl | /usr/bin/nroff -S -man
+_build         .me             /usr/bin/nroff -S -me %s 2>/dev/null | cat -S -Tascii
 
 _crunch                .Z              /usr/bin/compress -c > %s
 _crunch                .gz             /usr/bin/gzip -c > %s



Home | Main Index | Thread Index | Old Index