diff options
author | 1996-10-02 03:49:34 +0000 | |
---|---|---|
committer | 1996-10-02 03:49:34 +0000 | |
commit | de689b2811a90ec3686e532e5efdb2bbadeb6005 (patch) | |
tree | 7ff7e633191097918b3e1e2c21522c7a5547aff2 /lib/libskey/put.c | |
parent | Support for call graph detection using the -c options on i386 (diff) | |
download | wireguard-openbsd-de689b2811a90ec3686e532e5efdb2bbadeb6005.tar.xz wireguard-openbsd-de689b2811a90ec3686e532e5efdb2bbadeb6005.zip |
Fix a bug wrt handling of old md4 entries. Now don't save a type with md4
so we don't go over the record size and munge other entries. Don't export
symbols we don't need to in put.c.
Diffstat (limited to 'lib/libskey/put.c')
-rw-r--r-- | lib/libskey/put.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libskey/put.c b/lib/libskey/put.c index fe05e160a05..6b2636225b5 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -8,7 +8,7 @@ * * Dictionary lookup and extraction. * - * $Id: put.c,v 1.3 1996/09/30 04:10:43 millert Exp $ + * $Id: put.c,v 1.4 1996/10/02 03:49:37 millert Exp $ */ #include <stdio.h> @@ -23,7 +23,7 @@ static void insert __P ((char *s, int x, int start, int length)); static int wsrch __P ((char *w, int low, int high)); /* Dictionary for integer-word translations */ -char Wp[2048][4] = { +static char Wp[2048][4] = { "A", "ABE", "ACE", |