summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-01-22 00:31:41 +0000
committerTim Potter <tpot@samba.org>2002-01-22 00:31:41 +0000
commit50648ac3cc165e37300f4a889fa05ee35384793d (patch)
tree2f7b38786d1c0a0dded7c853c7823959ffe9e83c
parent71bc6b9af24bbf2f59ef6407419f02c6709fcced (diff)
downloadsamba-50648ac3cc165e37300f4a889fa05ee35384793d.tar.gz
samba-50648ac3cc165e37300f4a889fa05ee35384793d.tar.bz2
samba-50648ac3cc165e37300f4a889fa05ee35384793d.zip
Having a const parameter for set_socket_options() causes too much confusion.
(This used to be commit 025a0ea8bac876633b790b62558a8ec1b7460e1b)
-rw-r--r--source3/lib/util_sock.c2
1 files changed, 1 insertions, 1 deletions
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;