Correct minor oversights from last commit.

This commit is contained in:
Kurt Zeilenga 1999-05-29 19:08:57 +00:00
parent de7db04d0c
commit c3b1baa89f
2 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,8 @@
#include <ldap.h>
#include <ldif.h>
#include <ldapconfig.h>
static char *prog;
static char *binddn = NULL;
static char *passwd = NULL;

View File

@ -189,7 +189,7 @@ hash_crypt (const char *pw_in, Salt * salt)
crypted_pw = crypt (pw_in, (char *)lsalt.salt);
free (lsalt.salt);
}
return (STRDUP (crypted_pw));
return (strdup (crypted_pw));
}
#endif