Subject: Re: /etc/login.conf required to exist after user(8) changes
To: Jukka Salmi <j+nbsd@2005.salmi.ch>
From: Hubert Feyrer <hubert@feyrer.de>
List: current-users
Date: 07/29/2005 12:44:32
On Fri, 29 Jul 2005, Jukka Salmi wrote:
> I'm talking about the [1]changes made to src/usr.sbin/user/user.c
> between revisions 1.81 and 1.82, committed by christos, including
> "patches from Liam Foy" (was there a PR?).
...
> The attached patch fixes both problems.

I see. Would it be possible to rewrite

+       ret = lc != NULL;

as something like
 	ret = (lc == NULL)?1:0;

? It's more readable IMHO.


  - Hubert