lacp: Fix misleading prototype for lacp_configure().
authorBen Pfaff <blp@nicira.com>
Mon, 21 Mar 2011 20:15:31 +0000 (13:15 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 1 Apr 2011 22:52:20 +0000 (15:52 -0700)
commit02c9ed77e316ef38d89a17a184e0b497615258fa
treecf49054431bb75b5b1c489e5fe72306224cd3d5f
parent3e519d8e848874eade1d049bac4acbc10b78008d
lacp: Fix misleading prototype for lacp_configure().

Only the first 6 bytes (ETH_ADDR_LEN) of the 'sys_id' argument are used,
but the prototype declared it as an array of 8 bytes.  This has no effect
on the generated code--the declared size of an array parameter is
irrelevant--but it is misleading.

Also, add 'const' since the array is not modified.
lib/lacp.c
lib/lacp.h