diff options
author | Tim Potter <tpot@samba.org> | 2002-01-22 00:31:41 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-22 00:31:41 +0000 |
commit | 50648ac3cc165e37300f4a889fa05ee35384793d (patch) | |
tree | 2f7b38786d1c0a0dded7c853c7823959ffe9e83c /source3/lib/util_sock.c | |
parent | 71bc6b9af24bbf2f59ef6407419f02c6709fcced (diff) | |
download | samba-50648ac3cc165e37300f4a889fa05ee35384793d.tar.gz |
Having a const parameter for set_socket_options() causes too much confusion.
(This used to be commit 025a0ea8bac876633b790b62558a8ec1b7460e1b)
Diffstat (limited to 'source3/lib/util_sock.c')
-rw-r--r-- | source3/lib/util_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 6de09553e0c..0ca36b3788e 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; |