]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Remove stdout printout for unbound-service-install.exe
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 1 Dec 2015 13:00:57 +0000 (13:00 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 1 Dec 2015 13:00:57 +0000 (13:00 +0000)
git-svn-id: file:///svn/unbound/trunk@3560 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
winrc/unbound-service-install.c
winrc/unbound-service-remove.c

index 2f834f19603f624a61a84f926d337f667ebc0f09..d4788a1bbf5c94c362a8808fbf758d4423aa779f 100644 (file)
@@ -1,5 +1,6 @@
 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
index a6ce11a2aede7ba1a81f977eb1ffb384c151cf20..438bd770daacea500eb1f9bf9b8b2791217ffe0e 100644 (file)
@@ -49,7 +49,7 @@
 /** 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);
index 2a285b09a2d1d22436147419eeaee7098edef2ac..ea486f31835fb49c5072e405b914a07ade82c95a 100644 (file)
@@ -49,7 +49,7 @@
 /** 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);