mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
newkey: Fix mismatch in array bounds in for adjust().
Reviewed by: emaste Reported by: GCC -Warray-parameter Differential Revision: https://reviews.freebsd.org/D36762
This commit is contained in:
parent
157436dcbf
commit
536f7d84cd
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$");
|
|||
|
||||
#include "extern.h"
|
||||
|
||||
static void adjust(char[], char *);
|
||||
static void adjust(char[HEXKEYBYTES + 1], char *);
|
||||
static void getseed(char *, int, unsigned char *);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue