X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Ftincd.c;h=25db1552d43e2f9c2bf3ff0672a0951208973eca;hb=d772289f6d6adfb8932658b533349d43f08ec326;hp=6256c91550321e3ae5be9b2adca92ff5d7b61174;hpb=02e32cf61ee25d3d0e2fc1fef5cd98cbfa1c9a2f;p=meshlink diff --git a/src/tincd.c b/src/tincd.c index 6256c915..25db1552 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -64,19 +64,19 @@ #include "xalloc.h" /* The name this program was run with. */ -char *program_name = NULL; +static char *program_name = NULL; /* If nonzero, display usage information and exit. */ -bool show_help = false; +static bool show_help = false; /* If nonzero, print the version on standard output and exit. */ -bool show_version = false; +static bool show_version = false; /* If nonzero, use null ciphers and skip all key exchanges. */ bool bypass_security = false; /* If nonzero, disable swapping for this process. */ -bool do_mlock = false; +static bool do_mlock = false; /* If nonzero, chroot to netdir after startup. */ static bool do_chroot = false;