mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Remove stdout printout for unbound-service-install.exe
git-svn-id: file:///svn/unbound/trunk@3560 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b085b4d31a
commit
05b0136f76
3 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
1 December 2015: Wouter
|
1 December 2015: Wouter
|
||||||
- Fixup 724 fix for fname_after_chroot() calls.
|
- Fixup 724 fix for fname_after_chroot() calls.
|
||||||
|
- Remove stdout printout for unbound-service-install.exe
|
||||||
|
|
||||||
30 November 2015: Ralph
|
30 November 2015: Ralph
|
||||||
- Implemented qname minimisation
|
- Implemented qname minimisation
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
/** Install service main */
|
/** Install service main */
|
||||||
int main(int argc, char** argv)
|
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");*/
|
/* out = fopen("unbound-service-install.log", "w");*/
|
||||||
if(argc == 2 && strcmp(argv[1], "start")==0) {
|
if(argc == 2 && strcmp(argv[1], "start")==0) {
|
||||||
wsvc_rc_start(out);
|
wsvc_rc_start(out);
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
/** Remove service main */
|
/** Remove service main */
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
FILE* out = stdout;
|
FILE* out = NULL; /* stdout for debug output */
|
||||||
/* out = fopen("unbound-service-remove.log", "w");*/
|
/* out = fopen("unbound-service-remove.log", "w");*/
|
||||||
if(argc == 2 && strcmp(argv[1], "stop")==0) {
|
if(argc == 2 && strcmp(argv[1], "stop")==0) {
|
||||||
wsvc_rc_stop(out);
|
wsvc_rc_stop(out);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue