aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-ssh.c')
-rw-r--r--epan/dissectors/packet-ssh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ssh.c b/epan/dissectors/packet-ssh.c
index 9a19885c96..205c90454e 100644
--- a/epan/dissectors/packet-ssh.c
+++ b/epan/dissectors/packet-ssh.c
@@ -225,7 +225,7 @@ typedef struct {
ssh_bignum *key_material;
} ssh_key_map_entry_t;
-static GHashTable * ssh_master_key_map = NULL;
+static GHashTable * ssh_master_key_map;
static int proto_ssh;
@@ -439,7 +439,7 @@ static expert_field ei_ssh_mac_bad;
static bool ssh_desegment = true;
static dissector_handle_t ssh_handle;
-static dissector_handle_t sftp_handle=NULL;
+static dissector_handle_t sftp_handle;
static const char *pref_keylog_file;
static FILE *ssh_keylog_file;
@@ -466,7 +466,7 @@ static const fragment_items ssh_segment_items = {
#define SSH_DECRYPT_DEBUG
#ifdef SSH_DECRYPT_DEBUG
-static const gchar *ssh_debug_file_name = NULL;
+static const gchar *ssh_debug_file_name;
#endif
#define TCP_RANGE_SSH "22"
@@ -4869,7 +4869,7 @@ ssh_dissect_public_key_signature(tvbuff_t *packet_tvb, packet_info *pinfo,
#ifdef SSH_DECRYPT_DEBUG /* {{{ */
-static FILE* ssh_debug_file=NULL;
+static FILE* ssh_debug_file;
static void
ssh_prefs_apply_cb(void)