X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=util%2Fpasswddb.c;h=63375a0433b8f4fc8f15b418059ef0827a89cc6e;hp=f1e9f269fc1eabaec213d9b9f30d9a1c9c0261fa;hb=c22b27ba78b584e1f3e6ba863b854bf7f741d0a3;hpb=ae9a8f5eaa933c899c35556e438de8ee7f676318 diff --git a/util/passwddb.c b/util/passwddb.c index f1e9f26..63375a0 100644 --- a/util/passwddb.c +++ b/util/passwddb.c @@ -1,8 +1,5 @@ -/* $Id: passwddb.c,v 1.17 2007-10-29 08:19:39 adam Exp $ - Copyright (C) 1995-2007 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1994-2011 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 @@ -135,6 +132,8 @@ int passwd_db_auth(Passwd_db db, const char *user, const char *pass) break; if (!pe) return -1; + if (!pass) + return -2; if (pe->encrypt_flag) { #if HAVE_CRYPT_H @@ -142,8 +141,6 @@ int passwd_db_auth(Passwd_db db, const char *user, const char *pass) assert(pe->des); if (strlen (pe->des) < 3) return -3; - if (!pass) - return -2; if (pe->des[0] != '$') /* Not MD5? (assume DES) */ { @@ -186,6 +183,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