don't kill 'register' in comments!
This commit is contained in:
parent
a235399817
commit
95eeab3bb2
|
@ -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
|
* Copyright (c) 1989, 1993
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)crypt.c 8.1.1.1 (Berkeley) 8/18/93";
|
static char sccsid[] = "@(#)crypt.c 8.1.1.1 (Berkeley) 8/18/93";
|
||||||
#else
|
#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
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
@ -682,7 +682,7 @@ des_cipher(in, out, salt, num_iter)
|
||||||
/* use this if your "long" int indexing is slow */
|
/* 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);
|
#define DOXOR(x,y,i) j=B.b[i]; x^=SPTAB(SPE[0][i],j); y^=SPTAB(SPE[1][i],j);
|
||||||
#else
|
#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);
|
#define DOXOR(x,y,i) k=B.b[i]; x^=SPTAB(SPE[0][i],k); y^=SPTAB(SPE[1][i],k);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue