diff options
Diffstat (limited to 'lib/libcrypt')
| -rw-r--r-- | lib/libcrypt/crypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypt/crypt.c b/lib/libcrypt/crypt.c index 3a993e8231f..0ca80ff7687 100644 --- a/lib/libcrypt/crypt.c +++ b/lib/libcrypt/crypt.c @@ -1,4 +1,4 @@ -/* $NetBSD: crypt.c,v 1.10 1998/02/03 19:12:14 perry Exp $ */ +/* $NetBSD: crypt.c,v 1.11 1998/02/04 06:39:33 mikel Exp $ */ /* * Copyright (c) 1989, 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)crypt.c 8.1.1.1 (Berkeley) 8/18/93"; #else -__RCSID("$NetBSD: crypt.c,v 1.10 1998/02/03 19:12:14 perry Exp $"); +__RCSID("$NetBSD: crypt.c,v 1.11 1998/02/04 06:39:33 mikel Exp $"); #endif #endif /* not lint */ @@ -682,7 +682,7 @@ des_cipher(in, out, salt, num_iter) /* use this if your "long" int indexing is slow */ #define DOXOR(x,y,i) j=B.b[i]; x^=SPTAB(SPE[0][i],j); y^=SPTAB(SPE[1][i],j); #else - /* use this if "k" is allocated to a ... */ + /* use this if "k" is allocated to a register ... */ #define DOXOR(x,y,i) k=B.b[i]; x^=SPTAB(SPE[0][i],k); y^=SPTAB(SPE[1][i],k); #endif #endif |
