X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fpasswddb.c;h=7e76d7c4bc313d989fb2acb12ed9631ebcb71ac1;hb=c0a1c79e55f706009113b2de3c11a6f13d4a0e7d;hp=ed4822b19390a0e1e7efbf8a1d099306a41229f4;hpb=4247c4670f5bc5ad61e458734a590d57be5a9f34;p=idzebra-moved-to-github.git diff --git a/util/passwddb.c b/util/passwddb.c index ed4822b..7e76d7c 100644 --- a/util/passwddb.c +++ b/util/passwddb.c @@ -1,8 +1,33 @@ - +/* + * Copyright (C) 1998-1999, Index Data + * All rights reserved. + * Sebastian Hammer, Adam Dickmeiss + * + * $Log: passwddb.c,v $ + * Revision 1.5 1999-05-26 07:49:14 adam + * C++ compilation. + * + * Revision 1.4 1999/02/02 14:51:39 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.3 1998/06/25 19:16:32 adam + * Minor changes to Visual C++ project. + * + * Revision 1.2 1998/06/25 09:55:51 adam + * Minor changes - fixex headers. + * + */ +#ifdef WIN32 +#else #include +#endif #include #include +#ifndef USE_CRYPT +#define USE_CRYPT 0 +#endif + #if USE_CRYPT #include #endif @@ -24,7 +49,7 @@ struct passwd_db { Passwd_db passwd_db_open (void) { - struct passwd_db *p = xmalloc (sizeof(*p)); + struct passwd_db *p = (struct passwd_db *) xmalloc (sizeof(*p)); p->entries = 0; return p; } @@ -64,7 +89,7 @@ int passwd_db_file (Passwd_db db, const char *fname) get_entry (&cp, name, 128); get_entry (&cp, des, 128); - pe = xmalloc (sizeof(*pe)); + pe = (struct passwd_entry *) xmalloc (sizeof(*pe)); pe->name = xstrdup (name); pe->des = xstrdup (des); pe->next = db->entries;