summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/morecrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/crypt/morecrypt.c')
-rw-r--r--src/lib/libc/crypt/morecrypt.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/libc/crypt/morecrypt.c b/src/lib/libc/crypt/morecrypt.c
index 2bf7d21c38..1178ef6544 100644
--- a/src/lib/libc/crypt/morecrypt.c
+++ b/src/lib/libc/crypt/morecrypt.c
@@ -51,7 +51,7 @@
51 */ 51 */
52 52
53#if defined(LIBC_SCCS) && !defined(lint) 53#if defined(LIBC_SCCS) && !defined(lint)
54static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.7 1996/11/14 05:45:15 etheisen Exp $"; 54static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.8 1997/03/30 20:24:47 deraadt Exp $";
55#endif /* LIBC_SCCS and not lint */ 55#endif /* LIBC_SCCS and not lint */
56 56
57#include <sys/types.h> 57#include <sys/types.h>
@@ -487,24 +487,14 @@ des_cipher(in, out, salt, count)
487 487
488 setup_salt((int32_t)salt); 488 setup_salt((int32_t)salt);
489 489
490#if 0
491 rawl = ntohl(*((u_int32_t *) in)++);
492 rawr = ntohl(*((u_int32_t *) in));
493#else
494 memcpy(x, in, sizeof x); 490 memcpy(x, in, sizeof x);
495 rawl = ntohl(x[0]); 491 rawl = ntohl(x[0]);
496 rawr = ntohl(x[1]); 492 rawr = ntohl(x[1]);
497#endif
498 retval = do_des(rawl, rawr, &l_out, &r_out, count); 493 retval = do_des(rawl, rawr, &l_out, &r_out, count);
499 494
500#if 0
501 *((u_int32_t *) out)++ = htonl(l_out);
502 *((u_int32_t *) out) = htonl(r_out);
503#else
504 x[0] = htonl(l_out); 495 x[0] = htonl(l_out);
505 x[1] = htonl(r_out); 496 x[1] = htonl(r_out);
506 memcpy(out, x, sizeof x); 497 memcpy(out, x, sizeof x);
507#endif
508 return(retval); 498 return(retval);
509} 499}
510 500