]> sourceware.org Git - lvm2.git/commitdiff
coverity: drop unused local static var
authorZdenek Kabelac <zkabelac@redhat.com>
Sat, 17 Mar 2018 13:00:44 +0000 (14:00 +0100)
committerZdenek Kabelac <zkabelac@redhat.com>
Sat, 17 Mar 2018 22:33:58 +0000 (23:33 +0100)
lib/locking/lvmlockd.c

index a4684b496fe97a1d83223029dbe0719143c8be80..0521ede1739bc49193053820258517f545fca05e 100644 (file)
@@ -20,7 +20,6 @@
 
 static daemon_handle _lvmlockd;
 static const char *_lvmlockd_socket = NULL;
-static struct cmd_context *_lvmlockd_cmd = NULL;
 static int _use_lvmlockd = 0;         /* is 1 if command is configured to use lvmlockd */
 static int _lvmlockd_connected = 0;   /* is 1 if command is connected to lvmlockd */
 static int _lvmlockd_init_failed = 0; /* used to suppress further warnings */
@@ -69,8 +68,6 @@ void lvmlockd_init(struct cmd_context *cmd)
        } else {
                _lvmlockd_init_failed = 0;
        }
-
-       _lvmlockd_cmd = cmd;
 }
 
 void lvmlockd_connect(void)
@@ -103,7 +100,6 @@ void lvmlockd_disconnect(void)
        if (_lvmlockd_connected)
                daemon_close(_lvmlockd);
        _lvmlockd_connected = 0;
-       _lvmlockd_cmd = NULL;
 }
 
 /* Translate the result strings from lvmlockd to bit flags. */
This page took 0.036879 seconds and 5 git commands to generate.