From 884b1b45c8a5ebd204a8b4aa4db69aea16aef562 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 29 Aug 2017 14:54:50 -0700 Subject: [PATCH] Get rid of unused variable. --- print-esp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/print-esp.c b/print-esp.c index 52081491..dff7d386 100644 --- a/print-esp.c +++ b/print-esp.c @@ -157,7 +157,7 @@ int esp_print_decrypt_buffer_by_ikev2(netdissect_options *ndo, struct sa_list *sa; const u_char *iv; u_char *buf_mut, *output_buffer; - int len, block_size, cipher_nid, output_buffer_size ; + int len, block_size, output_buffer_size; EVP_CIPHER_CTX *ctx; /* initiator arg is any non-zero value */ @@ -623,7 +623,7 @@ esp_print(netdissect_options *ndo, const u_char *p; EVP_CIPHER_CTX *ctx; u_char *buf_mut, *output_buffer; - int block_size, cipher_nid, output_buffer_size; + int block_size, output_buffer_size; #endif esp = (const struct newesp *)bp;