diff options
author | Simo Sorce <simo@redhat.com> | 2012-07-19 19:15:57 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-08-01 22:24:44 +0200 |
commit | 204cfc89a076fd32bf34f2abb3f809304aaa88ab (patch) | |
tree | 908b05e88f0648b5e22b334f6ea3de53eb139bc0 /src/tests | |
parent | 067bfcaad9baae2d962528839fde30ebd1a5ba2b (diff) | |
download | sssd-204cfc89a076fd32bf34f2abb3f809304aaa88ab.tar.gz sssd-204cfc89a076fd32bf34f2abb3f809304aaa88ab.tar.bz2 sssd-204cfc89a076fd32bf34f2abb3f809304aaa88ab.zip |
Add realm paramter to subdomain list
This will be used later for setting domain_realm mappings in krb5.conf
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/sysdb-tests.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c index bf7f157e..1eb9503f 100644 --- a/src/tests/sysdb-tests.c +++ b/src/tests/sysdb-tests.c @@ -3388,9 +3388,9 @@ START_TEST(test_sysdb_original_dn_case_insensitive) } END_TEST -struct sysdb_subdom dom1 = { "dom1.sub", "dom1", "S-1" }; -struct sysdb_subdom dom2 = { "dom2.sub", "dom2", "S-2" }; -struct sysdb_subdom dom_t = { "test.sub", "test", "S-3" }; +struct sysdb_subdom dom1 = { "DOM1.SUB", "dom1.sub", "dom1", "S-1" }; +struct sysdb_subdom dom2 = { "DOM2.SUB", "dom2.sub", "dom2", "S-2" }; +struct sysdb_subdom dom_t = { "TEST.SUB", "test.sub", "test", "S-3" }; START_TEST(test_sysdb_subdomain_create) { |