]> andersk Git - moira.git/commitdiff
make get_host not fail if user doesn't exist
authordanw <danw>
Sun, 29 Sep 1996 20:01:10 +0000 (20:01 +0000)
committerdanw <danw>
Sun, 29 Sep 1996 20:01:10 +0000 (20:01 +0000)
server/qfollow.dc

index 7a63bd4d30a69598ab16c9a60a477f267940effe..06123f10bb682b8c6562f5e6b9a00cf760370337 100644 (file)
@@ -790,7 +790,8 @@ followup_ghst(q, sq, v, action, actarg, cl)
          status = id_to_name(-id, "STRING", &argv[16]);
        else
          status = id_to_name(id, "USER", &argv[16]);
-       if (status) return(status);
+       if (status && status != MR_NO_MATCH)
+         return(status);
 
        idx = 12;
        id = atoi(argv[idx]);
This page took 0.038537 seconds and 5 git commands to generate.