This was subtly using des_old.h defines (des_key_schedule) without using any
authormiod <miod@openbsd.org>
Wed, 16 Apr 2014 04:17:29 +0000 (04:17 +0000)
committermiod <miod@openbsd.org>
Wed, 16 Apr 2014 04:17:29 +0000 (04:17 +0000)
of its routines. Trivial fix, since des_old.h used to mention
#define des_key_schedule DES_key_schedule

libexec/login_tis/login_tis.h

index e5c7542..a515128 100644 (file)
@@ -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;
 };