From d72d7ec3fd1586b75a896cc5ccf2e24c8fd6bbbd Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 23 Mar 2000 04:38:20 +0000 Subject: [PATCH] Fully qualified hosts w/ wildcards were not matching the FQHOST token type. There's really no need for a separate token for fully-qualified vs. unqualified anymore so FQHOST is now history and hostname_matches now decides which hostname (short or long) to check based on whether or not the pattern contains a '.'. --- parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.h b/parse.h index 5e727185a..9d736f13b 100644 --- a/parse.h +++ b/parse.h @@ -109,7 +109,7 @@ extern int top; */ int addr_matches __P((char *)); int command_matches __P((char *, char *, char *, char *)); -int hostname_matches __P((char *, char *)); +int hostname_matches __P((char *, char *, char *)); int netgr_matches __P((char *, char *, char *, char *)); int usergr_matches __P((char *, char *));