Subject: Small probs in 11-16 -current (including 1 fix...)
To: None <netbsd-bugs@sun-lamp.cs.berkeley.edu>
From: Patrick Bridges <patrick@buffy.cs.msstate.edu>
List: netbsd-bugs
Date: 11/17/1993 02:56:04
Nov 16, 1993 NetBSD-current (w/ shared libs :-> )

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?

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.


					Patrick Bridges

------------------------------------------------------------------------------