1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-ah,v 1.2 1999/09/13 18:40:53 jlam Exp $
--- src/common/vars.c.orig Fri Aug 27 21:38:25 1999
+++ src/common/vars.c Mon Sep 13 11:19:06 1999
@@ -179,11 +179,11 @@
/* default filter */
{ "filter", STRING_K, &Filter_DYN,0,0},
/* filter LD_LIBRARY_PATH value */
-{ "filter_ld_path", STRING_K, &Filter_ld_path_DYN,0,0,"=/lib:/usr/lib:/usr/5lib:/usr/ucblib"},
+{ "filter_ld_path", STRING_K, &Filter_ld_path_DYN,0,0,"=" FILTER_LD_PATH},
/* filter options */
{ "filter_options", STRING_K, &Filter_options_DYN,0,0,"=$C $A $F $H $J $K $L $P $Q $R $Z $a $c $d $e $f $h $i $j $k $l $n $p $r $s $w $x $y $-a"},
/* filter PATH environment variable */
-{ "filter_path", STRING_K, &Filter_path_DYN,0,0,"=/bin:/usr/bin:/usr/local/bin:/usr/ucb:/usr/sbin:/usr/etc:/etc"},
+{ "filter_path", STRING_K, &Filter_path_DYN,0,0,"=" FILTER_PATH},
/* interval at which to check OF filter for error status */
{ "filter_poll_interval", INTEGER_K, &Filter_poll_interval_DYN,0,0,"=30"},
/* print a form feed when device is opened */
@@ -259,7 +259,7 @@
/* lpd port */
{ "lpd_port", STRING_K, &Lpd_port_DYN,0,0,"=printer"},
/* lpd printcap path */
-{ "lpd_printcap_path", STRING_K, &Lpd_printcap_path_DYN,1,0,"=/etc/lpd_printcap,/usr/etc/lpd_printcap"},
+{ "lpd_printcap_path", STRING_K, &Lpd_printcap_path_DYN,1,0,"=" LPD_PRINTCAP_PATH},
/* use lpr filtering as in bounce queue */
{ "lpr_bounce", FLAG_K, &Lpr_bounce_DYN,0,0},
/* BSD LPR -m flag, does not require mail address */
|