Do not build for Ubuntu raring, quantal (obsolete)
[idzebra-moved-to-github.git] / util / passwddb.c
index 2de1d89..1f1792c 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1995-2008 Index Data
+   Copyright (C) Index Data
 
 Zebra is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -18,6 +18,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
 
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
@@ -54,7 +57,7 @@ Passwd_db passwd_db_open (void)
 }
 
 static int get_entry (const char **p, char *dst, int max)
-{      
+{
     int i = 0;
     while ((*p)[i] != ':' && (*p)[i])
        i++;
@@ -106,7 +109,7 @@ void passwd_db_close(Passwd_db db)
     while (pe)
     {
        struct passwd_entry *pe_next = pe->next;
-       
+
        xfree (pe->name);
        xfree (pe->des);
        xfree (pe);
@@ -163,7 +166,7 @@ int passwd_db_auth(Passwd_db db, const char *user, const char *pass)
        if (strcmp (pe->des, pass))
            return -2;
     }
-    return 0;  
+    return 0;
 }
 
 int passwd_db_file_crypt(Passwd_db db, const char *fname)
@@ -183,6 +186,7 @@ int passwd_db_file_plain(Passwd_db db, const char *fname)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab