summaryrefslogtreecommitdiff
path: root/lib/libcrypt/crypt.c
diff options
context:
space:
mode:
authormikel <mikel@NetBSD.org>1998-02-04 06:39:33 +0000
committermikel <mikel@NetBSD.org>1998-02-04 06:39:33 +0000
commit95eeab3bb25fdcaaa920781fced0b021be40419a (patch)
tree863e49059102434c2c201d1ed1a0ff720e2c1774 /lib/libcrypt/crypt.c
parenta2353998176756ed52ff3637698ca2c4c9327e86 (diff)
don't kill 'register' in comments!
Diffstat (limited to 'lib/libcrypt/crypt.c')
-rw-r--r--lib/libcrypt/crypt.c6
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