From: Shivani Bhardwaj Date: Tue, 12 May 2020 18:50:37 +0000 (+0530) Subject: redis: Change port type to uint16_t X-Git-Tag: suricata-6.0.0-beta1~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4c9d339238399451877ca7175047aaba780b134;p=thirdparty%2Fsuricata.git redis: Change port type to uint16_t --- diff --git a/src/util-log-redis.h b/src/util-log-redis.h index ec4a4aff73..12e87dee4a 100644 --- a/src/util-log-redis.h +++ b/src/util-log-redis.h @@ -41,7 +41,7 @@ typedef struct RedisSetup_ { const char *command; const char *key; const char *server; - int port; + uint16_t port; int is_async; int batch_size; } RedisSetup;