diff options
author | Simo Sorce <idra@samba.org> | 2008-04-22 16:37:54 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-04-22 16:40:44 -0400 |
commit | 7f464f062899c96ebae04c899665500b998ce658 (patch) | |
tree | 28dce09b7c160db79142a26011748d7c416ff932 /source4/torture/raw | |
parent | 89cac520d047581fc11c7d4a20e0508a2005c154 (diff) | |
download | samba-7f464f062899c96ebae04c899665500b998ce658.tar.gz samba-7f464f062899c96ebae04c899665500b998ce658.tar.bz2 samba-7f464f062899c96ebae04c899665500b998ce658.zip |
Fix more failing tests to pass the event context.
(This used to be commit d6c5d8baf0c48a6078a47bba33993a841ff526d9)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/samba3hide.c | 2 | ||||
-rw-r--r-- | source4/torture/raw/samba3misc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/raw/samba3hide.c b/source4/torture/raw/samba3hide.c index 814b5f57f4..1f1501045c 100644 --- a/source4/torture/raw/samba3hide.c +++ b/source4/torture/raw/samba3hide.c @@ -136,7 +136,7 @@ bool torture_samba3_hide(struct torture_context *torture) if (!torture_open_connection_share( torture, &cli, torture, torture_setting_string(torture, "host", NULL), - torture_setting_string(torture, "share", NULL), NULL)) { + torture_setting_string(torture, "share", NULL), torture->ev)) { d_printf("torture_open_connection_share failed\n"); return false; } diff --git a/source4/torture/raw/samba3misc.c b/source4/torture/raw/samba3misc.c index 15a7f6c4a3..27b4d42dd8 100644 --- a/source4/torture/raw/samba3misc.c +++ b/source4/torture/raw/samba3misc.c @@ -56,7 +56,7 @@ bool torture_samba3_checkfsp(struct torture_context *torture) if (!torture_open_connection_share( torture, &cli, torture, torture_setting_string(torture, "host", NULL), - torture_setting_string(torture, "share", NULL), NULL)) { + torture_setting_string(torture, "share", NULL), torture->ev)) { d_printf("torture_open_connection_share failed\n"); ret = false; goto done; |