Better message for sys log entry when "max smbd processes" is reached.
authorJohn Reilly <jreilly@samba.org>
Thu, 20 Mar 2003 03:05:50 +0000 (03:05 +0000)
committerJohn Reilly <jreilly@samba.org>
Thu, 20 Mar 2003 03:05:50 +0000 (03:05 +0000)
JohnR (CR1873)

source/smbd/server.c

index 5ed4a5fddcfd5538ae0f9027ff96c8b9e37151e5..30662d719b12d4cf4ff8ea28b171e73d0bacaab5 100644 (file)
@@ -141,7 +141,7 @@ BOOL allowable_number_of_smbd_processes(void)
                        DEBUG(0,("allowable_number_of_smbd_processes: number of processes (%d) is over allowed limit (%d)\n",
                                val, max_processes ));
                        /* BEGIN_ADMIN_LOG */
-                       sys_adminlog( LOG_ERR, (char*)gettext( "Client connection disallowed due to limit. max smbd processes: %u"), 
+                       sys_adminlog( LOG_ERR, (char*)gettext( "Rejected client connection due to limit. max smbd processes: %u." ), 
         max_processes );
                        /* END_ADMIN_LOG */
                        return False;