validate_recipients() - completed removal of unused param
[citadel.git] / citadel / server / modules / imap / imap_acl.c
index 7965322e0b103ae3919aabaef58abda38ef8600b..b69fe6efdcbbdf02117f53a5a2dad95152023f92 100644 (file)
@@ -187,7 +187,7 @@ void imap_listrights(int num_parms, ConstStr *Params) {
 
        // Search for the specified user
        ret = (-1);
-       valid = validate_recipients(Params[3].Key, NULL, 0);
+       valid = validate_recipients(Params[3].Key, 0);
        if (valid != NULL) {
                if (valid->num_local == 1) {
                        ret = CtdlGetUser(&temp, valid->recp_local);