diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-05-26 16:24:57 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-05-26 16:24:57 +0200 |
commit | 1a2ded450ecfbb8ccb7f459d7265fc5333d13420 (patch) | |
tree | 8c52c62051105b6aa974965bf2baa21e20f15fb2 /nest/password.c | |
parent | 9d79fec8dc7c5a3b7e590c00df7eadcef9e80144 (diff) | |
download | bird-1a2ded450ecfbb8ccb7f459d7265fc5333d13420.tar bird-1a2ded450ecfbb8ccb7f459d7265fc5333d13420.zip |
Skeleton for password handling, currently I only build structures and
do nothing more advanced for them
Diffstat (limited to 'nest/password.c')
-rw-r--r-- | nest/password.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nest/password.c b/nest/password.c new file mode 100644 index 0000000..ff084b4 --- /dev/null +++ b/nest/password.c @@ -0,0 +1,12 @@ +/* + * BIRD -- Password handling + * + * Copyright 1999 Pavel Machek <pavel@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#include "nest/bird.h" +#include "nest/password.h" + +struct password_item *last_password_item = NULL; |