From: Sascha Wildner Date: Tue, 5 Dec 2017 09:45:11 +0000 (+0100) Subject: libcipher: Minimal K&R cleanup. X-Git-Url: https://gitweb.dragonflybsd.org/~ftigeot/dragonfly.git/commitdiff_plain/fa26353dac15fd83abe448086e44b65822e6dd07 libcipher: Minimal K&R cleanup. --- diff --git a/lib/libcipher/crypt.c b/lib/libcipher/crypt.c index abecf0b276..85273e4ead 100644 --- a/lib/libcipher/crypt.c +++ b/lib/libcipher/crypt.c @@ -29,7 +29,6 @@ * SUCH DAMAGE. * * $FreeBSD: src/secure/lib/libcipher/crypt.c,v 1.6 1999/08/28 01:30:21 peter Exp $ - * $DragonFly: src/secure/lib/libcipher/crypt.c,v 1.3 2005/05/21 10:31:08 corecode Exp $ * * This is an original implementation of the DES and the crypt(3) interfaces * by David Burren . @@ -200,7 +199,7 @@ ascii_to_bin(char ch) static void -des_init() +des_init(void) { int i, j, b, k, inbit, obit; u_long *p, *il, *ir, *fl, *fr;