diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-09-12 22:10:06 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-09-12 22:10:06 +0200 |
commit | eaa55b41239eadd302d983879217a0f391ea701b (patch) | |
tree | 28938562119cba2125bf9b950d1a10e4a0db0f30 /source4 | |
parent | 7e9e35db4126f953e8a2579d992c63b274011119 (diff) | |
download | samba-eaa55b41239eadd302d983879217a0f391ea701b.tar.gz samba-eaa55b41239eadd302d983879217a0f391ea701b.tar.bz2 samba-eaa55b41239eadd302d983879217a0f391ea701b.zip |
s4:torture/rpc/samr.c - fix typos in outputs
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/samr.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 4161748c6c..7212f1eb7d 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -4724,7 +4724,7 @@ static bool test_user_ops(struct dcerpc_pipe *p, } else { uint32_t expected_flags = (base_acct_flags | ACB_PWNOTREQ | ACB_DISABLED); if ((info->info5.acct_flags) != expected_flags) { - torture_warning(tctx, "QuerUserInfo level 5 failed, it returned 0x%08x when we expected flags of 0x%08x\n", + torture_warning(tctx, "QueryUserInfo level 5 failed, it returned 0x%08x when we expected flags of 0x%08x\n", info->info5.acct_flags, expected_flags); /* FIXME: GD */ @@ -4733,7 +4733,7 @@ static bool test_user_ops(struct dcerpc_pipe *p, } } if (info->info5.rid != rid) { - torture_warning(tctx, "QuerUserInfo level 5 failed, it returned %u when we expected rid of %u\n", + torture_warning(tctx, "QueryUserInfo level 5 failed, it returned %u when we expected rid of %u\n", info->info5.rid, rid); } @@ -5356,7 +5356,7 @@ static bool test_CreateUser(struct dcerpc_pipe *p, struct torture_context *tctx, ret = false; } else { if ((info->info16.acct_flags & acct_flags) != acct_flags) { - torture_warning(tctx, "QuerUserInfo level 16 failed, it returned 0x%08x when we expected flags of 0x%08x\n", + torture_warning(tctx, "QueryUserInfo level 16 failed, it returned 0x%08x when we expected flags of 0x%08x\n", info->info16.acct_flags, acct_flags); ret = false; @@ -5497,7 +5497,7 @@ static bool test_CreateUser2(struct dcerpc_pipe *p, struct torture_context *tctx expected_flags |= ACB_PW_EXPIRED; } if ((info->info5.acct_flags) != expected_flags) { - torture_warning(tctx, "QuerUserInfo level 5 failed, it returned 0x%08x when we expected flags of 0x%08x\n", + torture_warning(tctx, "QueryUserInfo level 5 failed, it returned 0x%08x when we expected flags of 0x%08x\n", info->info5.acct_flags, expected_flags); ret = false; @@ -5505,21 +5505,21 @@ static bool test_CreateUser2(struct dcerpc_pipe *p, struct torture_context *tctx switch (acct_flags) { case ACB_SVRTRUST: if (info->info5.primary_gid != DOMAIN_RID_DCS) { - torture_warning(tctx, "QuerUserInfo level 5: DC should have had Primary Group %d, got %d\n", + torture_warning(tctx, "QueryUserInfo level 5: DC should have had Primary Group %d, got %d\n", DOMAIN_RID_DCS, info->info5.primary_gid); ret = false; } break; case ACB_WSTRUST: if (info->info5.primary_gid != DOMAIN_RID_DOMAIN_MEMBERS) { - torture_warning(tctx, "QuerUserInfo level 5: Domain Member should have had Primary Group %d, got %d\n", + torture_warning(tctx, "QueryUserInfo level 5: Domain Member should have had Primary Group %d, got %d\n", DOMAIN_RID_DOMAIN_MEMBERS, info->info5.primary_gid); ret = false; } break; case ACB_NORMAL: if (info->info5.primary_gid != DOMAIN_RID_USERS) { - torture_warning(tctx, "QuerUserInfo level 5: Users should have had Primary Group %d, got %d\n", + torture_warning(tctx, "QueryUserInfo level 5: Users should have had Primary Group %d, got %d\n", DOMAIN_RID_USERS, info->info5.primary_gid); ret = false; } |