mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-25 14:54:45 +02:00
upstream commit
reword a comment to make it fit 80 columns Upstream-ID: 4ef509a66b96c7314bbcc87027c2af71fa9d0ba4
This commit is contained in:
parent
61b8ef6a66
commit
77a9be9446
12
match.c
12
match.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: match.c,v 1.37 2017/03/10 04:24:55 djm Exp $ */
|
/* $OpenBSD: match.c,v 1.36 2017/03/10 03:52:48 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -42,11 +42,9 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "match.h"
|
#include "match.h"
|
||||||
#include "misc.h"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns true if the given string matches the pattern (which may contain ?
|
* Returns true if the given string matches the pattern (which may contain ?
|
||||||
@ -179,13 +177,7 @@ match_pattern_list(const char *string, const char *pattern, int dolower)
|
|||||||
int
|
int
|
||||||
match_hostname(const char *host, const char *pattern)
|
match_hostname(const char *host, const char *pattern)
|
||||||
{
|
{
|
||||||
char *hostcopy = xstrdup(host);
|
return match_pattern_list(host, pattern, 1);
|
||||||
int r;
|
|
||||||
|
|
||||||
lowercase(hostcopy);
|
|
||||||
r = match_pattern_list(hostcopy, pattern, 1);
|
|
||||||
free(hostcopy);
|
|
||||||
return r;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user