Skip to content

Commit

Permalink
libnetlabel: really increase the default message size of 8k
Browse files Browse the repository at this point in the history
A simple brain-o meant the max message size was 8096 instead of 8192.
  • Loading branch information
pcmoore committed Jul 10, 2015
1 parent 6973574 commit f2b30a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libnetlabel/netlabel_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ int nlbl_init(void)
{
int rc;

nlmsg_set_default_size(8096);
nlmsg_set_default_size(8192);

rc = nlbl_mgmt_init();
if (rc < 0)
Expand Down

0 comments on commit f2b30a5

Please sign in to comment.