Skip to content
Snippets Groups Projects
Commit bd6c47b7 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Replaced htobe32() with htonl() as it's probably more correct.

parent fac5b71a
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ static uint32_t acl_fill_mask32(short nbits)
}
/* Make sure the mask has MSB on the leftmost bit. */
return htobe32(r);
return htonl(r);
}
static int acl_compare(void *k1, void *k2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment