- For #519: yacc and lex. And fix python bindings, and test program
unbound-dnstap-socket.
- For #519: fix comments for doxygen.
+ - Fix to print error from unbound-anchor for writing to the key
+ file, also when not verbose.
5 August 2021: Wouter
- Tag for 1.13.2rc1 release.
const char* builtin_root_anchor = get_builtin_ds();
FILE* out = fopen(file, "w");
if(!out) {
- if(verb) printf("%s: %s\n", file, strerror(errno));
- if(verb) printf(" could not write builtin anchor\n");
+ printf("could not write builtin anchor, to file %s: %s\n",
+ file, strerror(errno));
return;
}
if(!fwrite(builtin_root_anchor, strlen(builtin_root_anchor), 1, out)) {
- if(verb) printf("%s: %s\n", file, strerror(errno));
- if(verb) printf(" could not complete write builtin anchor\n");
+ printf("could not complete write builtin anchor, to file %s: %s\n",
+ file, strerror(errno));
}
fclose(out);
}