1 December 2015: Wouter
- Fixup 724 fix for fname_after_chroot() calls.
+ - Remove stdout printout for unbound-service-install.exe
30 November 2015: Ralph
- Implemented qname minimisation
/** Install service main */
int main(int argc, char** argv)
{
- FILE* out = stdout;
+ FILE* out = NULL; /* set stdout for debug output to stdout */
/* out = fopen("unbound-service-install.log", "w");*/
if(argc == 2 && strcmp(argv[1], "start")==0) {
wsvc_rc_start(out);
/** Remove service main */
int main(int argc, char** argv)
{
- FILE* out = stdout;
+ FILE* out = NULL; /* stdout for debug output */
/* out = fopen("unbound-service-remove.log", "w");*/
if(argc == 2 && strcmp(argv[1], "stop")==0) {
wsvc_rc_stop(out);