]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
argument format.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 21 Sep 2007 14:35:07 +0000 (14:35 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 21 Sep 2007 14:35:07 +0000 (14:35 +0000)
git-svn-id: file:///svn/unbound/trunk@631 be551aaa-1e26-0410-a405-d3ace91eadb9

configure.ac
doc/Changelog
util/log.c

index ec1f728a066d5085526ad95b402abe9192534590..1b980712f160a05dad8232ace0b582d354f39982 100644 (file)
@@ -396,7 +396,7 @@ AC_CHECK_HEADERS([openssl/err.h],,, [AC_INCLUDES_DEFAULT])
 
 # check for thread library.
 AC_ARG_WITH(pthreads, AC_HELP_STRING([--with-pthreads], 
- [use pthreads library, or --without--pthreads to disable threading support.]), 
+ [use pthreads library, or --without-pthreads to disable threading support.]), 
  [ ],[ withval="yes" ])
 ub_have_pthreads=no
 if test x_$withval != x_no; then
index 727cccd661f95f255a9f86e1e1e6d14f218641c4..9385fb1982ca94f883bbc1335790be5d2989cbc3 100644 (file)
@@ -1,7 +1,8 @@
 21 September 2007: Wouter
-       - fixup empty_DS_name allocated in wrong region.
-       - fixup testcode lock safety. 
-       - removes subscript has type char warnings.
+       - fixup empty_DS_name allocated in wrong region (port DEC Alpha).
+       - fixup testcode lock safety (port FreeBSD).
+       - removes subscript has type char warnings (port Solaris 9).
+       - fixup of field with format type to int (port MacOS/X intel).
 
 20 September 2007: Wouter
        - fixup and test for NSEC wildcard with empty nonterminals. 
index a77e57ad109561bec621cc2cc4839316c52e60e7..9ee324cc0b5907f680a9508d0a3335599ca6b7df 100644 (file)
@@ -190,7 +190,7 @@ log_hex(const char* msg, void* data, size_t length)
        else {
                for(i=0; i<length*2; i+=blocksize) {
                        log_info("%s[%u:%u] %.*s", msg, (unsigned)length, 
-                               (unsigned)i/2, blocksize, buf+i);
+                               (unsigned)i/2, (int)blocksize, buf+i);
                }
        }
        free(buf);