diff options
-rw-r--r-- | readconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.c b/readconf.c index b7a1caa11..66fb0d2bb 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.312 2019/11/13 04:47:52 deraadt Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.313 2019/11/13 05:42:26 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1559,12 +1559,12 @@ parse_keytypes: | |||
1559 | "files",filename, linenum, arg2); | 1559 | "files",filename, linenum, arg2); |
1560 | free(arg2); | 1560 | free(arg2); |
1561 | continue; | 1561 | continue; |
1562 | } else if (r != 0 || gl.gl_pathc < 0) | 1562 | } else if (r != 0) |
1563 | fatal("%.200s line %d: glob failed for %s.", | 1563 | fatal("%.200s line %d: glob failed for %s.", |
1564 | filename, linenum, arg2); | 1564 | filename, linenum, arg2); |
1565 | free(arg2); | 1565 | free(arg2); |
1566 | oactive = *activep; | 1566 | oactive = *activep; |
1567 | for (i = 0; i < (u_int)gl.gl_pathc; i++) { | 1567 | for (i = 0; i < gl.gl_pathc; i++) { |
1568 | debug3("%.200s line %d: Including file %s " | 1568 | debug3("%.200s line %d: Including file %s " |
1569 | "depth %d%s", filename, linenum, | 1569 | "depth %d%s", filename, linenum, |
1570 | gl.gl_pathv[i], depth, | 1570 | gl.gl_pathv[i], depth, |