From b6e9fffaa2cdb45533cf8fd751a4a857124e5a2c Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Mon, 7 Apr 2008 11:22:14 +0200 Subject: increase log level for this failed setsockopt call. EINVAL is a normal error on Solaris when we do this on an already resetted connection. (This used to be commit 42bc4ff7fd6bfc92bde015ae8f3a9fb62d443cd5) --- source3/lib/util_sock.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 30a3b83be7..f252377b7e 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -837,7 +837,10 @@ void set_socket_options(int fd, const char *options) } if (ret != 0) { - DEBUG(0,("Failed to set socket option %s (Error %s)\n", + /* be aware that some systems like Solaris return + * EINVAL to a setsockopt() call when the client + * sent a RST previously - no need to worry */ + DEBUG(2,("Failed to set socket option %s (Error %s)\n", tok, strerror(errno) )); } } -- cgit