1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

coverity: drop unused local static var

This commit is contained in:
Zdenek Kabelac 2018-03-17 14:00:44 +01:00
parent aa75e181be
commit f4383a70ba

View 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. */