Subject: Re: Small probs in 11-16 -current (including 1 fix...)
To: Patrick Bridges <patrick@buffy.cs.msstate.edu>
From: Chris G. Demetriou <cgd@nobozo.CS.Berkeley.EDU>
List: netbsd-bugs
Date: 11/17/1993 01:20:47
> 1. unistd.h has a prototype for confstr, and sys/unistd.h
> defines _CS_PATH to 1, but I can find no implmentation
> for the confstr function...
>
> Bash 1.13.4 wants it. Bash 1.13.4 uses
> #if defined(_CS_PATH) ) to determine if it wants to use it...
> I worked around it. No hurry, just checking...
> Lemme guess, you haven't gotten around to it?
i'll leave this for jtc...
> 2. the test for sendmail_flags in /etc/rc needs double quotes around
> X${sendmail_flags} part of the test since sendmail_flags usually is
> something like: -bd -q30m
> so the line:
> if [ X${sendmail_flags} != X"NO" ]; then
>
> should be:
> if [ "X${sendmail_flags}" != X"NO" ]; then
>
> or something similar.
fixed; thanks.
actually, all instances of things like this should be quoted...
(fixed them, too... 8-)
thanks,
chris
------------------------------------------------------------------------------