diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2015-10-28 21:38:46 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2015-10-28 21:38:46 +0000 |
commit | c4986959c07d935fae6d468cb241a6d3daa1fa8e (patch) | |
tree | 775142941829787df6aaf3d3dd4699d3d0575d76 /lib/libc/asr/asr_debug.c | |
parent | 0ec638d03a14afb4a968ec47acfc54280e67d85c (diff) |
We are always using _PATH_RESCONF, so no need to remember the path on
the resolver.
ok millert@ deraadt@
Diffstat (limited to 'lib/libc/asr/asr_debug.c')
-rw-r--r-- | lib/libc/asr/asr_debug.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libc/asr/asr_debug.c b/lib/libc/asr/asr_debug.c index bcd0525efa1..09ce456d599 100644 --- a/lib/libc/asr/asr_debug.c +++ b/lib/libc/asr/asr_debug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asr_debug.c,v 1.21 2015/10/03 09:57:30 eric Exp $ */ +/* $OpenBSD: asr_debug.c,v 1.22 2015/10/28 21:38:45 eric Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * @@ -263,10 +263,6 @@ _asr_dump_config(FILE *f, struct asr *a) ac = a->a_ctx; fprintf(f, "--------- ASR CONFIG ---------------\n"); - if (a->a_path) - fprintf(f, "CONF FILE \"%s\"\n", a->a_path); - else - fprintf(f, "STATIC CONF\n"); fprintf(f, "DOMAIN \"%s\"\n", ac->ac_domain); fprintf(f, "SEARCH\n"); for (i = 0; i < ac->ac_domcount; i++) |