Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
e5bf06ee
Commit
e5bf06ee
authored
Feb 29, 2012
by
Evan Hunt
Browse files
3291. [port] Fixed a build error on systems without ENOTSUP.
[RT #28200]
parent
6c73ac21
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e5bf06ee
3291. [port] Fixed a build error on systems without ENOTSUP.
[RT #28200]
3290. [bug] <isc/hmacsha.h> was not being installed. [RT #28169]
3289. [bug] 'rndc retransfer' failed for inline zones. [RT #28036]
...
...
lib/isc/unix/stdio.c
View file @
e5bf06ee
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: stdio.c,v 1.1
1
201
1/12/22 08:49:01 marka
Exp $ */
/* $Id: stdio.c,v 1.1
2
201
2/02/29 21:28:17 each
Exp $ */
#include <config.h>
...
...
@@ -105,6 +105,13 @@ isc_stdio_flush(FILE *f) {
return
(
isc__errno2result
(
errno
));
}
/*
* OpenBSD has deprecated ENOTSUP in favor of EOPNOTSUPP.
*/
#if defined(EOPNOTSUPP) && !defined(ENOTSUP)
#define ENOTSUP EOPNOTSUPP
#endif
isc_result_t
isc_stdio_sync
(
FILE
*
f
)
{
int
r
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment