bind/bind93-rh490837.patch

35 lines
1.1 KiB
Diff
Raw Normal View History

2020-07-27 17:33:59 +08:00
diff --git a/lib/isc/lex.c b/lib/isc/lex.c
2021-12-04 15:31:20 +08:00
index cd44fe3..5b7c539 100644
2020-07-27 17:33:59 +08:00
--- a/lib/isc/lex.c
+++ b/lib/isc/lex.c
2021-12-04 15:31:20 +08:00
@@ -27,6 +27,8 @@
#include <isc/string.h>
#include <isc/util.h>
2019-12-28 09:41:34 +08:00
2021-12-04 15:31:20 +08:00
+#include "../errno2result.h"
+
typedef struct inputsource {
isc_result_t result;
bool is_file;
@@ -422,7 +424,7 @@ isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
#endif /* if defined(HAVE_FLOCKFILE) && defined(HAVE_GETC_UNLOCKED) */
if (c == EOF) {
if (ferror(stream)) {
2019-12-28 09:41:34 +08:00
- source->result = ISC_R_IOERROR;
2021-12-04 15:31:20 +08:00
+ source->result = isc__errno2result(errno);
result = source->result;
2019-12-28 09:41:34 +08:00
goto done;
}
2020-07-27 17:33:59 +08:00
diff --git a/lib/isc/unix/errno2result.c b/lib/isc/unix/errno2result.c
2021-12-04 15:31:20 +08:00
index e3e2644..5e58600 100644
2020-07-27 17:33:59 +08:00
--- a/lib/isc/unix/errno2result.c
+++ b/lib/isc/unix/errno2result.c
2021-12-04 15:31:20 +08:00
@@ -37,6 +37,7 @@ isc___errno2result(int posixerrno, bool dolog, const char *file,
case EINVAL: /* XXX sometimes this is not for files */
2019-12-28 09:41:34 +08:00
case ENAMETOOLONG:
case EBADF:
+ case EISDIR:
return (ISC_R_INVALIDFILE);
case ENOENT:
return (ISC_R_FILENOTFOUND);