summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
49ebbd5)
Portability fixes:
+ * adnslogres: do not call equivalent of printf("%.*s",0,(char*)0).
Portability fixes:
* install-sh (from autoconf 2.12 Debian r13) included.
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.
Documentation improvements:
* Security/performance note added, about local nameservers and DNSSEC.
*/
static const char * const cvsid =
*/
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>
#include <sys/types.h>
#include <sys/time.h>
static const char *progname;
#define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
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 ! */
#define sensible_ctype(type,ch) (type((unsigned char)(ch)))
/* isfoo() functions from ctype.h can't safely be fed char - blech ! */
strcpy(line->start, buf);
str= ipaddr2domain(line->start, &line->addr, &line->rest);
if (opts & OPT_DEBUG)
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))
if (adns_submit(adns, str, adns_r_ptr,
adns_qf_quoteok_cname|adns_qf_cname_loose,
NULL, &line->query))
while (head) {
if (opts & OPT_DEBUG)
msg("%d in queue; checking %.*s", len,
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);
if (eof || len > MAXPENDING)
if (opts & OPT_POLL)
err= adns_wait_poll(adns, &head->query, &answer, NULL);