vlc | branch: master | Thomas Guillem <[email protected]> | Tue Jan 10 15:29:25 2017 +0100| [5357bb980170b08d251ccd33cb5ac81ea580158a] | committer: Thomas Guillem
test/keystore: fix domain/username inverted logic > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5357bb980170b08d251ccd33cb5ac81ea580158a --- test/src/misc/keystore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/src/misc/keystore.c b/test/src/misc/keystore.c index cabd86a..9a016e3 100644 --- a/test/src/misc/keystore.c +++ b/test/src/misc/keystore.c @@ -183,12 +183,12 @@ static const struct testcase /* Testing smb realm split */ { true, SMB("host/share/path1/ks_store"), - { "user6", "pwd6" }, {}, { "user6;domain", "pwd6" }, false }, + { "user6", "pwd6" }, {}, { "domain;user6", "pwd6" }, false }, - { true, SMB("user6;domain@host/share/path1/ks_find"), + { true, SMB("domain;user6@host/share/path1/ks_find"), { "user6", "pwd6" }, {}, {}, false }, - { false, SMB("user6;wrong_domain@host/share/path1/ks_find"), + { false, SMB("wrong_domain;user6@host/share/path1/ks_find"), { "user6", "pwd6" }, {}, {}, false }, WIPE_MEMORY_KEYSTORE, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
