while ((pw = fgetpwent(original))) {
i = hashmap_get(users, pw->pw_name);
while ((pw = fgetpwent(original))) {
i = hashmap_get(users, pw->pw_name);
z = hashmap_get(database_user, i->name);
if (z) {
log_debug("User %s already exists.", i->name);
z = hashmap_get(database_user, i->name);
if (z) {
log_debug("User %s already exists.", i->name);
log_info("Creating user %s (%s) with uid " UID_FMT " and gid " GID_FMT ".", i->name, strna(i->description), i->uid, i->gid);
return 0;
log_info("Creating user %s (%s) with uid " UID_FMT " and gid " GID_FMT ".", i->name, strna(i->description), i->uid, i->gid);
return 0;