]> andersk Git - moira.git/commitdiff
Ignore MR_NO_MATCH error from get_lists_of_member query.
authorprobe <probe>
Tue, 28 Jul 1992 14:59:31 +0000 (14:59 +0000)
committerprobe <probe>
Tue, 28 Jul 1992 14:59:31 +0000 (14:59 +0000)
It means the user isn't on any lists.

incremental/afs.c

index 5f930fbc1c059e5f7bdfb118521a5247797ed611..9c9a58eb4321a53c8887f28229eff0b05d2b4a64 100644 (file)
@@ -180,7 +180,7 @@ int afterc;
            av[1] = after[U_NAME];
            code = mr_query("get_lists_of_member", 2, av,
                            add_user_lists, after[U_NAME]);
-           if (code)
+           if (code && code != MR_NO_MATCH)
                critical_alert("incremental",
                               "Couldn't retrieve membership of user %s: %s",
                               after[U_NAME], error_message(code));
This page took 0.21582 seconds and 5 git commands to generate.