diff options
author | 2014-04-16 04:17:29 +0000 | |
---|---|---|
committer | 2014-04-16 04:17:29 +0000 | |
commit | f611ad138aff26b2226cf55ddbe727063b171929 (patch) | |
tree | e5101500480b95b330bd157aa8f2d12635e1cb78 | |
parent | Your operating system memory allocation functions are your friend. If they (diff) | |
download | wireguard-openbsd-f611ad138aff26b2226cf55ddbe727063b171929.tar.xz wireguard-openbsd-f611ad138aff26b2226cf55ddbe727063b171929.zip |
This was subtly using des_old.h defines (des_key_schedule) without using any
of its routines. Trivial fix, since des_old.h used to mention
#define des_key_schedule DES_key_schedule
-rw-r--r-- | libexec/login_tis/login_tis.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/login_tis/login_tis.h b/libexec/login_tis/login_tis.h index e5c75428cc8..a51512896f5 100644 --- a/libexec/login_tis/login_tis.h +++ b/libexec/login_tis/login_tis.h @@ -1,4 +1,4 @@ -/* $OpenBSD: login_tis.h,v 1.1 2004/09/28 15:02:01 millert Exp $ */ +/* $OpenBSD: login_tis.h,v 1.2 2014/04/16 04:17:29 miod Exp $ */ /* * Copyright (c) 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -33,5 +33,5 @@ struct tis_connection { char *port; char *server; char *altserver; - des_key_schedule keysched; + DES_key_schedule keysched; }; |