From 7a16c2d57c744f08cede7ac9f2d2986362c2fe87 Mon Sep 17 00:00:00 2001 From: Jeremy Roman Date: Mon, 16 Sep 2013 08:28:46 -0400 Subject: [PATCH] fix ceo_add_user_call in addclub --- src/op-adduser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/op-adduser.c b/src/op-adduser.c index 2f24e49..bbe297a 100644 --- a/src/op-adduser.c +++ b/src/op-adduser.c @@ -211,7 +211,7 @@ static int32_t addclub(Ceo__AddUser *in, Ceo__AddUserResponse *out) { return response_message(out, EKERB, "unable to clear principal %s", in->username); if ((user_stat = ceo_add_user(in->username, ldap_users_base, "club", in->realname, homedir, - NULL, club_shell, id, NULL))) + club_shell, id, NULL))) return response_message(out, ELDAP, "unable to create ldap account %s", in->username); response_message(out, 0, "successfully created ldap account");