kernel-klips: Pass a pointer to a properly sized integer for algorithm lookup

This commit is contained in:
Martin Willi 2014-05-08 13:28:25 +02:00
parent e163427d9f
commit 6eff96f543
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ static kernel_algorithm_t compression_algs[] = {
static int lookup_algorithm(transform_type_t type, int ikev2)
{
kernel_algorithm_t *list;
int alg = 0;
u_int16_t alg = 0;
switch (type)
{