[vlc-commits] test/keystore: fix domain/username inverted logic

Thomas Guillem git at videolan.org
Tue Jan 10 15:31:25 CET 2017


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | 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 at host/share/path1/ks_find"),
+    { true, SMB("domain;user6 at host/share/path1/ks_find"),
       { "user6", "pwd6" }, {}, {}, false },
 
-    { false, SMB("user6;wrong_domain at host/share/path1/ks_find"),
+    { false, SMB("wrong_domain;user6 at host/share/path1/ks_find"),
       { "user6", "pwd6" }, {}, {}, false },
 
     WIPE_MEMORY_KEYSTORE,



More information about the vlc-commits mailing list