Skip to content
GitLab
Menu
Projects
Groups
Snippets
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
d468b1b7
Commit
d468b1b7
authored
Sep 13, 2007
by
Evan Hunt
Browse files
Fix compiler warnings on SCO OSr5
parent
2c94a0e5
Changes
9
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
d468b1b7
2234. [port] Correct some compiler warnings on SCO OSr5 [RT #17134]
2233. [func] Add support for O(1) ACL processing, based on
radix tree code originally written by kevin
brintnall. [RT #16288]
...
...
bin/check/check-tool.c
View file @
d468b1b7
...
...
@@ -15,27 +15,26 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: check-tool.c,v 1.3
0
2007/0
8/06 01:06:49 marka
Exp $ */
/* $Id: check-tool.c,v 1.3
1
2007/0
9/13 04:45:18 each
Exp $ */
/*! \file */
#include <config.h>
#include <stdio.h>
#include <string.h>
#include "check-tool.h"
#include <isc/util.h>
#include <isc/buffer.h>
#include <isc/log.h>
#include <isc/
net
.h>
#include <isc/
mem
.h>
#include <isc/netdb.h>
#include <isc/net.h>
#include <isc/region.h>
#include <isc/stdio.h>
#include <isc/string.h>
#include <isc/symtab.h>
#include <isc/types.h>
#include <isc/
mem
.h>
#include <isc/
util
.h>
#include <dns/fixedname.h>
#include <dns/log.h>
...
...
bin/named/config.c
View file @
d468b1b7
...
...
@@ -15,14 +15,13 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: config.c,v 1.
79
2007/0
6
/1
8 23
:4
7
:18
tbox
Exp $ */
/* $Id: config.c,v 1.
80
2007/0
9
/1
3 04
:4
5
:18
each
Exp $ */
/*! \file */
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <isc/buffer.h>
#include <isc/log.h>
...
...
@@ -31,6 +30,7 @@
#include <isc/region.h>
#include <isc/result.h>
#include <isc/sockaddr.h>
#include <isc/string.h>
#include <isc/util.h>
#include <isccfg/namedconf.h>
...
...
bin/named/control.c
View file @
d468b1b7
...
...
@@ -15,17 +15,17 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: control.c,v 1.3
2
2007/0
6
/1
8 23
:4
7
:18
tbox
Exp $ */
/* $Id: control.c,v 1.3
3
2007/0
9
/1
3 04
:4
5
:18
each
Exp $ */
/*! \file */
#include <config.h>
#include <string.h>
#include <isc/app.h>
#include <isc/event.h>
#include <isc/mem.h>
#include <isc/string.h>
#include <isc/timer.h>
#include <isc/util.h>
...
...
bin/tests/system/lwresd/lwtest.c
View file @
d468b1b7
...
...
@@ -15,15 +15,15 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: lwtest.c,v 1.2
8
2007/0
6
/1
9 23:47:04 tbox
Exp $ */
/* $Id: lwtest.c,v 1.2
9
2007/0
9
/1
3 04:45:18 each
Exp $ */
#include <config.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <isc/net.h>
#include <isc/string.h>
#include <lwres/lwres.h>
#include <lwres/netdb.h>
...
...
configure.in
View file @
d468b1b7
...
...
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.43
0
$)
AC_REVISION($Revision: 1.43
1
$)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.59)
...
...
@@ -2059,6 +2059,13 @@ case "$hack_shutup_stdargcast" in
;;
esac
AC_CHECK_HEADERS(strings.h,
ISC_PLATFORM_HAVESTRINGSH="#define ISC_PLATFORM_HAVESTRINGSH 1"
,
ISC_PLATFORM_HAVESTRINGSH="#undef ISC_PLATFORM_HAVESTRINGSH"
)
AC_SUBST(ISC_PLATFORM_HAVESTRINGSH)
#
# Check for if_nametoindex() for IPv6 scoped addresses support
#
...
...
lib/bind9/check.c
View file @
d468b1b7
...
...
@@ -15,14 +15,13 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: check.c,v 1.8
2
2007/09/1
2
0
1:09:0
8 each Exp $ */
/* $Id: check.c,v 1.8
3
2007/09/1
3
0
4:45:1
8 each Exp $ */
/*! \file */
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <isc/buffer.h>
#include <isc/log.h>
...
...
@@ -32,6 +31,7 @@
#include <isc/region.h>
#include <isc/result.h>
#include <isc/sockaddr.h>
#include <isc/string.h>
#include <isc/symtab.h>
#include <isc/util.h>
...
...
lib/isc/include/isc/platform.h.in
View file @
d468b1b7
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: platform.h.in,v 1.4
4
2007/0
6
/1
8 23:47:44 tbox
Exp $ */
/* $Id: platform.h.in,v 1.4
5
2007/0
9
/1
3 04:45:18 each
Exp $ */
#ifndef ISC_PLATFORM_H
#define ISC_PLATFORM_H 1
...
...
@@ -263,6 +263,11 @@
*/
@ISC_PLATFORM_USESTDASM@
/*
* Define if the platform has <strings.h>.
*/
@ISC_PLATFORM_HAVESTRINGSH@
/***
*** Windows dll support.
***/
...
...
lib/isc/include/isc/string.h
View file @
d468b1b7
...
...
@@ -15,21 +15,25 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: string.h,v 1.2
1
2007/09/
02 23:06:59 marka
Exp $ */
/* $Id: string.h,v 1.2
2
2007/09/
13 04:45:18 each
Exp $ */
#ifndef ISC_STRING_H
#define ISC_STRING_H 1
/*! \file isc/string.h */
#include <string.h>
#include <isc/formatcheck.h>
#include <isc/int.h>
#include <isc/lang.h>
#include <isc/platform.h>
#include <isc/types.h>
#include <string.h>
#ifdef ISC_PLATFORM_HAVE_STRINGS_H
#include <strings.h>
#endif
#define ISC_STRING_MAGIC 0x5e
ISC_LANG_BEGINDECLS
...
...
Write
Preview
Supports
Markdown
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