From: Guy Harris Date: Tue, 29 Aug 2017 21:54:50 +0000 (-0700) Subject: Get rid of unused variable. X-Git-Tag: tcpdump-4.9.2~139 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/2695a6a2bc0ed8541c059727eb8783a90b985870?ds=sidebyside Get rid of unused variable. --- 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;