diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-02 04:13:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-02 04:13:09 +0000 |
commit | b82392a2c8d94b90ed313cfcc8fc5802e2ffb098 (patch) | |
tree | 22f4cc98bfb82d0fc31d047423476d748db3130b /usr.bin/encrypt | |
parent | eee1dd5e1b21ad755ff45d9c5069141f52bb02a3 (diff) |
oops, to64() is shared.
Diffstat (limited to 'usr.bin/encrypt')
-rw-r--r-- | usr.bin/encrypt/encrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/encrypt/encrypt.c b/usr.bin/encrypt/encrypt.c index 4ef6ca4a9f6..f54e3ccaeab 100644 --- a/usr.bin/encrypt/encrypt.c +++ b/usr.bin/encrypt/encrypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: encrypt.c,v 1.21 2004/07/13 21:09:48 millert Exp $ */ +/* $OpenBSD: encrypt.c,v 1.22 2006/04/02 04:13:07 deraadt Exp $ */ /* * Copyright (c) 1996, Jason Downs. All rights reserved. @@ -86,7 +86,7 @@ print_passwd(char *string, int operation, void *extra) char msalt[3], *salt; login_cap_t *lc; int pwd_gensalt(char *, int, login_cap_t *, char); - void to64(char *, int32_t, int n); + void to64(char *, u_int32_t, int n); switch(operation) { case DO_MAKEKEY: |