diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-06 16:36:50 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 20:02:05 +0000 | 
| commit | 09c866e34dd6f1725ff5a2354017c13485c2c755 (patch) | |
| tree | 5dd5e6484250d6388453ace46240d210af30df36 /ospf6d/ospf6_network.c | |
| parent | 85cd2f9f9a43d0c536f445cc65b94a8d90bb4c97 (diff) | |
*: rename ferr_zlog -> flog_err_sys
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_network.c')
| -rw-r--r-- | ospf6d/ospf6_network.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/ospf6d/ospf6_network.c b/ospf6d/ospf6_network.c index 8c2b68fe70..bf0387aab1 100644 --- a/ospf6d/ospf6_network.c +++ b/ospf6d/ospf6_network.c @@ -124,9 +124,10 @@ int ospf6_sso(ifindex_t ifindex, struct in6_addr *group, int option)  	ret = setsockopt(ospf6_sock, IPPROTO_IPV6, option, &mreq6,  			 sizeof(mreq6));  	if (ret < 0) { -		flog_err(LIB_ERR_SOCKET, -			  "Network: setsockopt (%d) on ifindex %d failed: %s", -			  option, ifindex, safe_strerror(errno)); +		flog_err_sys( +			LIB_ERR_SOCKET, +			"Network: setsockopt (%d) on ifindex %d failed: %s", +			option, ifindex, safe_strerror(errno));  		return ret;  	}  | 
