summaryrefslogtreecommitdiffstats
path: root/nest/password.h
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-05-26 16:37:07 +0200
committerPavel Machek <pavel@ucw.cz>1999-05-26 16:37:07 +0200
commit858a717796d7aa48fe9b22a6b035fec9edbb5a2a (patch)
tree1e9753c5047d3c947080a314fa5e3124def6f947 /nest/password.h
parent7eb01479c92cd2f615993f2112aa5986f3e2b0ad (diff)
downloadbird-858a717796d7aa48fe9b22a6b035fec9edbb5a2a.tar
bird-858a717796d7aa48fe9b22a6b035fec9edbb5a2a.zip
Change format of passwords (less ;'s) and fix password.h to allow
multiple inclusions.
Diffstat (limited to 'nest/password.h')
-rw-r--r--nest/password.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/nest/password.h b/nest/password.h
index db2a8bf..b457495 100644
--- a/nest/password.h
+++ b/nest/password.h
@@ -6,6 +6,8 @@
* Can be freely distributed and used under the terms of the GNU GPL.
*/
+#ifndef PASSWORD_H
+#define PASSWORD_H
struct password_item {
struct password_item *next;
char *password;
@@ -14,3 +16,4 @@ struct password_item {
};
extern struct password_item *last_password_item;
+#endif