diff options
author | bde <bde@FreeBSD.org> | 1996-12-23 18:23:14 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-12-23 18:23:14 +0000 |
commit | 970ca1d1d3547d863cd55cafb447608c0b90d822 (patch) | |
tree | 18a4f716bfbd19bbb1cdd04b6391c12b5636b77b /sys/conf/NOTES | |
parent | fbe1d95900b9b907b1f9f205ba57737634901f4a (diff) | |
download | FreeBSD-src-970ca1d1d3547d863cd55cafb447608c0b90d822.zip FreeBSD-src-970ca1d1d3547d863cd55cafb447608c0b90d822.tar.gz |
Fixed quoting of MAXDSIZ and DFLTDSIZ. The quoting rules changed when
they were put in an options header.
Should be in 2.2.
Diffstat (limited to 'sys/conf/NOTES')
-rw-r--r-- | sys/conf/NOTES | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 0b0a64a..fec72ef 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.299 1996/12/22 10:38:41 phk Exp $ +# $Id: LINT,v 1.300 1996/12/22 18:28:50 dyson Exp $ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from @@ -57,8 +57,8 @@ options OPEN_MAX=128 # max, and explicitly set the maximum with a shell command for processes # that regularly exceed the limit like INND. # -options "MAXDSIZ='(256*1024*1024)'" -options "DFLDSIZ='(256*1024*1024)'" +options "MAXDSIZ=(256*1024*1024)" +options "DFLDSIZ=(256*1024*1024)" # # Under some circumstances it is useful to have an extra number of |