From 3a7458f9472432ef12c43008414925fd1ce8ea0c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Jan 2003 08:28:12 +0000 Subject: Merge from HEAD - make Samba compile with -Wwrite-strings without additional warnings. (Adds a lot of const). Andrew Bartlett --- source/lib/util_sid.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source/lib/util_sid.c') 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(); -- cgit v1.2.1