diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-10-07 11:50:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:39:32 -0500 |
commit | 90570e46d075485cc843a1521d682aaa505891fc (patch) | |
tree | 3cc63286c0786c58f5a4cfff308f372c428a20ef /source4 | |
parent | dddaa5204e9742837c7eb91c5e0ea08939df672f (diff) | |
download | samba-90570e46d075485cc843a1521d682aaa505891fc.tar.gz samba-90570e46d075485cc843a1521d682aaa505891fc.tar.bz2 samba-90570e46d075485cc843a1521d682aaa505891fc.zip |
r10812: Fix capitalisation (thanks tridge).
Andrew Bartlett
(This used to be commit f78982a0f1079b07be6d7bfd9cc0f92c2cebcf1c)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index da5df9b368..70ef5345d7 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -454,7 +454,7 @@ NTSTATUS auth_system_server_info(TALLOC_CTX *mem_ctx, struct auth_serversupplied data_blob_clear(&server_info->user_session_key); data_blob_clear(&server_info->lm_session_key); - server_info->account_name = talloc_strdup(server_info, "sYSTEM"); + server_info->account_name = talloc_strdup(server_info, "SYSTEM"); NT_STATUS_HAVE_NO_MEMORY(server_info->account_name); server_info->domain_name = talloc_strdup(server_info, "NT AUTHORITY"); |