diff options
author | 1997-07-23 06:53:10 +0000 | |
---|---|---|
committer | 1997-07-23 06:53:10 +0000 | |
commit | ba6e060349cd5c2067a5a4cbde0d89bdbf52a53e (patch) | |
tree | bfecdc2f37d8313054dba2b3f9eaeb9acf144276 /lib/libskey/put.c | |
parent | close keyfile nicely. (diff) | |
download | wireguard-openbsd-ba6e060349cd5c2067a5a4cbde0d89bdbf52a53e.tar.xz wireguard-openbsd-ba6e060349cd5c2067a5a4cbde0d89bdbf52a53e.zip |
_PATH_SKEYKEYS now lives in <paths.h>
Add skeygetnext() for iterating over the key file.
Diffstat (limited to 'lib/libskey/put.c')
-rw-r--r-- | lib/libskey/put.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libskey/put.c b/lib/libskey/put.c index 5ed70ce64a1..496a41ba49f 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -8,13 +8,14 @@ * * Dictionary lookup and extraction. * - * $Id: put.c,v 1.5 1996/11/03 18:57:28 millert Exp $ + * $Id: put.c,v 1.6 1997/07/23 06:53:11 millert Exp $ */ #include <stdio.h> #include <string.h> #include <assert.h> #include <ctype.h> + #include "skey.h" static unsigned long extract __P ((char *s, int start, int length)); |