diff options
author | Günther Deschner <gd@samba.org> | 2011-03-02 23:40:05 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-04 01:18:42 +0100 |
commit | c1089c130ba24ff71dafdea2b53df46056b49aeb (patch) | |
tree | 286306176ed9c71797c05d6b841b9926e6afa9b7 | |
parent | cb8c0e177687769638ee3aef59a86c4c4a80b971 (diff) | |
download | samba-c1089c130ba24ff71dafdea2b53df46056b49aeb.tar.gz samba-c1089c130ba24ff71dafdea2b53df46056b49aeb.tar.bz2 samba-c1089c130ba24ff71dafdea2b53df46056b49aeb.zip |
s3-nterr: make nt_err_desc static const.
Guenther
-rw-r--r-- | source3/libsmb/nterr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c index 726fc4e72b..f228f992a7 100644 --- a/source3/libsmb/nterr.c +++ b/source3/libsmb/nterr.c @@ -565,7 +565,7 @@ static const nt_err_code_struct nt_errs[] = /* These need sorting..... */ -nt_err_code_struct nt_err_desc[] = +static const nt_err_code_struct nt_err_desc[] = { { N_("Success"), NT_STATUS_OK }, { N_("Undetermined error"), NT_STATUS_UNSUCCESSFUL }, |