summaryrefslogtreecommitdiffstats
path: root/lib/sockunion.c
diff options
context:
space:
mode:
authorhasso <hasso>2005-05-06 19:33:35 +0000
committerhasso <hasso>2005-05-06 19:33:35 +0000
commit1172e8c1b0d63a5b3b84eec6b7130c9c0e7f6871 (patch)
tree8221c51d199ce7aa7f077ca446261ba9de0250ae /lib/sockunion.c
parent8c64f46bc860804df32640b24c665783e159c2ab (diff)
downloadquagga-1172e8c1b0d63a5b3b84eec6b7130c9c0e7f6871.tar.bz2
quagga-1172e8c1b0d63a5b3b84eec6b7130c9c0e7f6871.tar.xz
* sockunion.c: Fix warning message.
Diffstat (limited to 'lib/sockunion.c')
-rw-r--r--lib/sockunion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sockunion.c b/lib/sockunion.c
index 7157b49c..8a1fd9d2 100644
--- a/lib/sockunion.c
+++ b/lib/sockunion.c
@@ -476,7 +476,7 @@ sockopt_reuseport (int sock)
(void *) &on, sizeof (on));
if (ret < 0)
{
- zlog (NULL, LOG_WARNING, "can't set sockopt SO_REUSEADDR to socket %d", sock);
+ zlog (NULL, LOG_WARNING, "can't set sockopt SO_REUSEPORT to socket %d", sock);
return -1;
}
return 0;