diff options
author | 2017-03-10 03:52:48 +0000 | |
---|---|---|
committer | 2017-03-10 03:52:48 +0000 | |
commit | 942290b4e4f0023578f1edfaceeea1742bf94c7c (patch) | |
tree | 330f25fc67c8e56a91fc7fb3afb5c30142589971 | |
parent | Check for NULL argument to sshkey_read. Patch from jjelen at redhat.com (diff) | |
download | wireguard-openbsd-942290b4e4f0023578f1edfaceeea1742bf94c7c.tar.xz wireguard-openbsd-942290b4e4f0023578f1edfaceeea1742bf94c7c.zip |
reword a comment to make it fit 80 columns
-rw-r--r-- | usr.bin/ssh/match.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/match.c b/usr.bin/ssh/match.c index b2399c62cf6..533768f0644 100644 --- a/usr.bin/ssh/match.c +++ b/usr.bin/ssh/match.c @@ -1,4 +1,4 @@ -/* $OpenBSD: match.c,v 1.35 2017/02/15 23:38:31 jsg Exp $ */ +/* $OpenBSD: match.c,v 1.36 2017/03/10 03:52:48 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -143,7 +143,7 @@ match_pattern_list(const char *string, const char *pattern, int dolower) if (subi >= sizeof(sub) - 1) return 0; - /* If the subpattern was terminated by a comma, skip the comma. */ + /* If the subpattern was terminated by a comma, then skip it. */ if (i < len && pattern[i] == ',') i++; |