diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-07-20 20:11:36 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-07-20 20:11:36 +0000 |
| commit | 00a5a1160587b7828e80cec9e4fa9d409ab0b820 (patch) | |
| tree | 46eaf277d2d5cbb31dec6366a632468115649e6c /lib/libskey/skeysubr.c | |
| parent | 61203ed3a0c0495daf88adb58aa5243562b0fa70 (diff) | |
Notes
Diffstat (limited to 'lib/libskey/skeysubr.c')
| -rw-r--r-- | lib/libskey/skeysubr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libskey/skeysubr.c b/lib/libskey/skeysubr.c index 81284443e7a7..3230c31647e3 100644 --- a/lib/libskey/skeysubr.c +++ b/lib/libskey/skeysubr.c @@ -1,3 +1,5 @@ +/* $FreeBSD$ */ + #include <err.h> #include <stdio.h> #include <stdlib.h> @@ -21,7 +23,7 @@ const char *passwd; /* Password, any length */ { char *buf; MDX_CTX md; - u_long results[4]; + u_int32_t results[4]; unsigned int buflen; buflen = strlen(seed) + strlen(passwd); @@ -51,7 +53,7 @@ f(x) char *x; { MDX_CTX md; - u_long results[4]; + u_int32_t results[4]; MDXInit(&md); MDXUpdate(&md,(unsigned char *)x,8); |
