diff options
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/rpctorture.c | 5 | ||||
-rw-r--r-- | source3/torture/vfstest.c | 5 |
2 files changed, 3 insertions, 7 deletions
diff --git a/source3/torture/rpctorture.c b/source3/torture/rpctorture.c index 64e7b580f3..a9748ba905 100644 --- a/source3/torture/rpctorture.c +++ b/source3/torture/rpctorture.c @@ -25,9 +25,6 @@ extern pstring global_myname; -extern pstring user_socket_options; - - extern file_info def_finfo; #define CNV_LANG(s) dos2unix_format(s,False) @@ -360,7 +357,7 @@ enum client_action case 'O': { - pstrcpy(user_socket_options,optarg); + lp_do_parameter(-1, "socket options", optarg); break; } diff --git a/source3/torture/vfstest.c b/source3/torture/vfstest.c index 0633d0c2e7..daecf3c2d1 100644 --- a/source3/torture/vfstest.c +++ b/source3/torture/vfstest.c @@ -32,8 +32,6 @@ static struct cmd_list { struct cmd_set *cmd_set; } *cmd_list; -extern pstring user_socket_options; - int get_client_fd(void) { return -1; @@ -470,7 +468,8 @@ bool reload_services(bool test) { if (smbd_server_fd() != -1) { set_socket_options(smbd_server_fd(),"SO_KEEPALIVE"); - set_socket_options(smbd_server_fd(), user_socket_options); + set_socket_options(smbd_server_fd(), + lp_socket_options()); } } |