diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-03 08:28:12 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-03 08:28:12 +0000 |
commit | 3a7458f9472432ef12c43008414925fd1ce8ea0c (patch) | |
tree | 185f6140d3895e4d5304e4ef3f5ce4d7a34a7e82 /source/lib/util_sid.c | |
parent | 96e9fa5f224966531fa8f9cf18cbc4bbb2fe60ed (diff) | |
download | samba-3a7458f9472432ef12c43008414925fd1ce8ea0c.tar.gz |
Merge from HEAD - make Samba compile with -Wwrite-strings without additional
warnings. (Adds a lot of const).
Andrew Bartlett
Diffstat (limited to 'source/lib/util_sid.c')
-rw-r--r-- | source/lib/util_sid.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/lib/util_sid.c b/source/lib/util_sid.c index edd59ae1094..824987f1892 100644 --- a/source/lib/util_sid.c +++ b/source/lib/util_sid.c @@ -79,9 +79,9 @@ NT_USER_TOKEN system_token = { Lookup string names for SID types. ****************************************************************************/ -const static struct { +static const struct { enum SID_NAME_USE sid_type; - char *string; + const char *string; } sid_name_type[] = { {SID_NAME_USER, "User"}, {SID_NAME_DOM_GRP, "Domain Group"}, @@ -181,7 +181,8 @@ NT_USER_TOKEN *get_system_token(void) void split_domain_name(const char *fullname, char *domain, char *name) { pstring full_name; - char *p, *sep; + const char *sep; + char *p; sep = lp_winbind_separator(); |