chiark / gitweb /
@@ -14,6 +14,7 @@
authorian <ian>
Tue, 11 Apr 2000 21:15:39 +0000 (21:15 +0000)
committerian <ian>
Tue, 11 Apr 2000 21:15:39 +0000 (21:15 +0000)
   Portability fixes:
+  * adnslogres: do not call equivalent of printf("%.*s",0,(char*)0).

changelog
client/adnslogres.c

index e1e36c77361cd0ec0857d4543348f5245c5e3ed7..10a917455b7d171d2f6192da66e02f093e1a4497 100644 (file)
--- a/changelog
+++ b/changelog
@@ -14,6 +14,7 @@ uadns (0.8) BETA; urgency=low
 
   Portability fixes:
   * install-sh (from autoconf 2.12 Debian r13) included.
+  * adnslogres: do not call equivalent of printf("%.*s",0,(char*)0).
 
   Documentation improvements:
   * Security/performance note added, about local nameservers and DNSSEC.
index be6a115ae50f044b25731d9b62691590a166efee..c685bfa429456e8d8787dec45b360971c345fdf3 100644 (file)
@@ -31,7 +31,7 @@
  */
 
 static const char * const cvsid =
-       "$Id: adnslogres.c,v 1.9 2000/03/20 01:50:08 ian Exp $";
+       "$Id: adnslogres.c,v 1.10 2000/04/11 21:15:39 ian Exp $";
 
 #include <sys/types.h>
 #include <sys/time.h>
@@ -58,6 +58,7 @@ static const char * const cvsid =
 static const char *progname;
 
 #define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
+#define guard_null(str) ((str) ? (str) : "")
 
 #define sensible_ctype(type,ch) (type((unsigned char)(ch)))
   /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
@@ -133,7 +134,7 @@ static logline *readline(FILE *inf, adns_state adns, int opts) {
     strcpy(line->start, buf);
     str= ipaddr2domain(line->start, &line->addr, &line->rest);
     if (opts & OPT_DEBUG)
-      msg("submitting %.*s -> %s", line->rest-line->addr, line->addr, str);
+      msg("submitting %.*s -> %s", line->rest-line->addr, guard_null(line->addr), str);
     if (adns_submit(adns, str, adns_r_ptr,
                    adns_qf_quoteok_cname|adns_qf_cname_loose,
                    NULL, &line->query))
@@ -158,7 +159,7 @@ static void proclog(FILE *inf, FILE *outf, int opts) {
   while (head) {
     if (opts & OPT_DEBUG)
       msg("%d in queue; checking %.*s", len,
-         head->rest-head->addr, head->addr);
+         head->rest-head->addr, guard_null(head->addr));
     if (eof || len > MAXPENDING)
       if (opts & OPT_POLL)
        err= adns_wait_poll(adns, &head->query, &answer, NULL);