diff options
Diffstat (limited to 'source4/lib/util/util_sock.c')
-rw-r--r-- | source4/lib/util/util_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util/util_sock.c b/source4/lib/util/util_sock.c index 0a4380faf4..28a15066b8 100644 --- a/source4/lib/util/util_sock.c +++ b/source4/lib/util/util_sock.c @@ -90,7 +90,7 @@ _PUBLIC_ void set_socket_options(int fd, const char *options) char *p; BOOL got_value = False; - if ((p = strchr_m(tok,'='))) { + if ((p = strchr(tok,'='))) { *p = 0; value = atoi(p+1); got_value = True; |