From f971da97f6b8aa9555c391f9284d42fc856415c9 Mon Sep 17 00:00:00 2001 From: danw Date: Sun, 29 Sep 1996 20:01:10 +0000 Subject: [PATCH] make get_host not fail if user doesn't exist --- server/qfollow.dc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/qfollow.dc b/server/qfollow.dc index 7a63bd4d..06123f10 100644 --- a/server/qfollow.dc +++ b/server/qfollow.dc @@ -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]); -- 2.45.2