Remove unused global variables.
authorKirill Isakov <is-kir@ya.ru>
Thu, 29 Jul 2021 17:14:12 +0000 (23:14 +0600)
committerKirill Isakov <is-kir@ya.ru>
Thu, 29 Jul 2021 17:56:39 +0000 (23:56 +0600)
src/process.c
src/process.h
src/protocol_key.c
src/tincctl.c

index f596eb6..f3e190c 100644 (file)
@@ -31,7 +31,6 @@
 
 /* If zero, don't detach from the terminal. */
 bool do_detach = true;
-bool sigalrm = false;
 
 extern char **g_argv;
 extern bool use_logfile;
index 26a9cab..c6ffda8 100644 (file)
@@ -22,7 +22,6 @@
 */
 
 extern bool do_detach;
-extern bool sigalrm;
 
 extern void setup_signals(void);
 extern bool detach(void);
index 3036d12..77b829b 100644 (file)
 #include "sptps.h"
 #include "utils.h"
 
-#ifndef DISABLE_LEGACY
-static bool mykeyused = false;
-#endif
-
 void send_key_changed(void) {
 #ifndef DISABLE_LEGACY
        send_request(everyone, "%d %x %s", KEY_CHANGED, rand(), myself->name);
@@ -375,7 +371,6 @@ bool send_ans_key(node_t *to) {
        bin2hex(key, key, keylen);
 
        // Reset sequence number and late packet window
-       mykeyused = true;
        to->received_seqno = 0;
        to->received = 0;
 
index 14faf64..4dd9726 100644 (file)
@@ -48,7 +48,6 @@
 #endif
 
 static char **orig_argv;
-static int orig_argc;
 
 /* If nonzero, display usage information and exit. */
 static bool show_help = false;
@@ -72,7 +71,6 @@ static int result;
 bool force = false;
 bool tty = true;
 bool confbasegiven = false;
-bool netnamegiven = false;
 char *scriptinterpreter = NULL;
 char *scriptextension = "";
 static char *prompt;
@@ -3272,7 +3270,6 @@ static void cleanup() {
 int main(int argc, char *argv[]) {
        program_name = argv[0];
        orig_argv = argv;
-       orig_argc = argc;
        tty = isatty(0) && isatty(1);
 
        if(!parse_options(argc, argv)) {