From 50648ac3cc165e37300f4a889fa05ee35384793d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 22 Jan 2002 00:31:41 +0000 Subject: Having a const parameter for set_socket_options() causes too much confusion. (This used to be commit 025a0ea8bac876633b790b62558a8ec1b7460e1b) --- source3/lib/util_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 6de09553e0..0ca36b3788 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -116,7 +116,7 @@ static void print_socket_options(int s) Set user socket options. ****************************************************************************/ -void set_socket_options(int fd, const char *options) +void set_socket_options(int fd, char *options) { fstring tok; -- cgit