* sockunion.c: Fix warning message.

This commit is contained in:
hasso 2005-05-06 19:33:35 +00:00
parent 15935e9ae1
commit e7fe8c88c3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-05-06 Hasso Tepper <hasso at quagga.net>
* sockunion.c: Fix warning message.
2005-05-03 Paul Jakma <paul@dishone.st>
* stream.h: Add comment about the special zero-ing ability of

View File

@ -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;