diff options
-rw-r--r-- | source4/torture/raw/raw.c | 1 | ||||
-rw-r--r-- | source4/torture/raw/samba3misc.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/source4/torture/raw/raw.c b/source4/torture/raw/raw.c index feff72d4e8..e2fdf67ca0 100644 --- a/source4/torture/raw/raw.c +++ b/source4/torture/raw/raw.c @@ -54,6 +54,7 @@ NTSTATUS torture_raw_init(void) register_torture_op("RAW-COMPOSITE", torture_raw_composite); register_torture_op("RAW-SAMBA3HIDE", torture_samba3_hide); register_torture_op("RAW-SAMBA3CHECKFSP", torture_samba3_checkfsp); + register_torture_op("RAW-SAMBA3BADPATH", torture_samba3_badpath); register_torture_op("SCAN-EAMAX", torture_max_eas); return NT_STATUS_OK; diff --git a/source4/torture/raw/samba3misc.c b/source4/torture/raw/samba3misc.c index 8b2fbd99a2..e64aefa81e 100644 --- a/source4/torture/raw/samba3misc.c +++ b/source4/torture/raw/samba3misc.c @@ -253,6 +253,11 @@ BOOL torture_samba3_badpath(struct torture_context *torture) status = smbcli_chkpath(cli_dos->tree, ".."); CHECK_STATUS(status, NT_STATUS_DOS(ERRDOS, ERRinvalidpath)); + status = smbcli_chkpath(cli_nt->tree, "."); + CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_INVALID); + status = smbcli_chkpath(cli_dos->tree, "."); + CHECK_STATUS(status, NT_STATUS_DOS(ERRDOS, ERRbadpath)); + status = smbcli_chkpath(cli_nt->tree, "\t"); CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_INVALID); status = smbcli_chkpath(cli_dos->tree, "\t"); |