diff options
author | Bo Yang <boyang@novell.com> | 2008-11-16 16:31:31 +0800 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-17 11:27:33 +0100 |
commit | 29f2ca8ff2b0ea5ac4639530d2d10eecff0d5eec (patch) | |
tree | b768dd111f95bf2dc3214fc8d31b6c646009fad4 /source3 | |
parent | 806a45c3c7e33fad90597f87373a532016e614e3 (diff) | |
download | samba-29f2ca8ff2b0ea5ac4639530d2d10eecff0d5eec.tar.gz samba-29f2ca8ff2b0ea5ac4639530d2d10eecff0d5eec.tar.bz2 samba-29f2ca8ff2b0ea5ac4639530d2d10eecff0d5eec.zip |
Fix broken msgids in ntstatus_errors
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/pam_winbind.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/nsswitch/pam_winbind.c b/source3/nsswitch/pam_winbind.c index c164f8e72a..1daa05ea17 100644 --- a/source3/nsswitch/pam_winbind.c +++ b/source3/nsswitch/pam_winbind.c @@ -598,14 +598,14 @@ static const struct ntstatus_errors { {"NT_STATUS_INVALID_LOGON_HOURS", N_("You are not allowed to logon at this time")}, {"NT_STATUS_ACCOUNT_EXPIRED", - N_("Your account has expired. ") - N_("Please contact your System administrator")}, /* SCNR */ + N_("Your account has expired. " + "Please contact your System administrator")}, /* SCNR */ {"NT_STATUS_ACCOUNT_DISABLED", - N_("Your account is disabled. ") - N_("Please contact your System administrator")}, /* SCNR */ + N_("Your account is disabled. " + "Please contact your System administrator")}, /* SCNR */ {"NT_STATUS_ACCOUNT_LOCKED_OUT", - N_("Your account has been locked. ") - N_("Please contact your System administrator")}, /* SCNR */ + N_("Your account has been locked. " + "Please contact your System administrator")}, /* SCNR */ {"NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT", N_("Invalid Trust Account")}, {"NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT", |