X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/401c256aeefcfa8b23668bee45b3174792df4f62..1a80d99bb3940d4b00869aea027e6d1e9488691d:/client/adnstest.c diff --git a/client/adnstest.c b/client/adnstest.c index f793107..99da619 100644 --- a/client/adnstest.c +++ b/client/adnstest.c @@ -3,12 +3,11 @@ * - simple test program, not part of the library */ /* - * This file is - * Copyright (C) 1997-2000 Ian Jackson - * - * It is part of adns, which is - * Copyright (C) 1997-2000 Ian Jackson - * Copyright (C) 1999-2000 Tony Finch + * This file is part of adns, which is + * Copyright (C) 1997-2000,2003,2006 Ian Jackson + * Copyright (C) 1999-2000,2003,2006 Tony Finch + * Copyright (C) 1991 Massachusetts Institute of Technology + * (See the file INSTALL for full details.) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -33,6 +32,7 @@ #include #include +#define ADNS_FEATURE_MANYAF #include "config.h" #include "adns.h" @@ -122,13 +122,11 @@ static const adns_rrtype defaulttypes[]= { adns_r_mx_raw, adns_r_txt, adns_r_rp_raw, - adns_r_srv_raw, adns_r_addr, adns_r_ns, adns_r_ptr, adns_r_mx, - adns_r_srv, adns_r_soa, adns_r_rp, @@ -138,7 +136,7 @@ static const adns_rrtype defaulttypes[]= { static void dumptype(adns_status ri, const char *rrtn, const char *fmtn) { fprintf(stdout, "%s(%s)%s%s", - ri ? "?" : rrtn, ri ? "?" : fmtn ? fmtn : "-", + (!ri && rrtn) ? rrtn : "?", ri ? "?" : fmtn ? fmtn : "-", ri ? " " : "", ri ? adns_strerror(ri) : ""); } @@ -254,7 +252,8 @@ int main(int argc, char *const *argv) { mc->doneyet= 0; mc->fdom= fdomlist[qi]; - fprintf(stdout,"%s flags %d type %d",domain,qflags,types[ti]); + fprintf(stdout,"%s flags %d type %d", + domain,qflags,types[ti]&adns_rrt_reprmask); r= adns_submit(ads,domain,types[ti],qflags,mc,&mc->qu); if (r == ENOSYS) { fprintf(stdout," not implemented\n");