Subject: Re: CVS commit: basesrc/usr.bin/pwhash
To: Jaromir Dolecek <jdolecek@netbsd.org>
From: Luke Mewburn <lukem@wasabisystems.com>
List: source-changes
Date: 10/03/2002 09:38:32
On Wed, Oct 02, 2002 at 04:39:12PM +0300, Jaromir Dolecek wrote:
| Modified Files:
| basesrc/usr.bin/pwhash: pwhash.c
|
| Log Message:
| couple minor changes:
| * make trim(), usage(), print_passwd() static, and g/c no longer needed
| prototypes for them
This is not correct per KNF; static functions must have prototypes,
even if they're defined before they're used (i.e, get the implicit
prototype). c.f. share/misc/knf.
|
| cvs rdiff -r1.2 -r1.3 basesrc/usr.bin/pwhash/pwhash.c
Luke.