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/include/mapping.h | |
parent | 96e9fa5f224966531fa8f9cf18cbc4bbb2fe60ed (diff) | |
download | samba-3a7458f9472432ef12c43008414925fd1ce8ea0c.tar.gz samba-3a7458f9472432ef12c43008414925fd1ce8ea0c.tar.xz samba-3a7458f9472432ef12c43008414925fd1ce8ea0c.zip |
Merge from HEAD - make Samba compile with -Wwrite-strings without additional
warnings. (Adds a lot of const).
Andrew Bartlett
Diffstat (limited to 'source/include/mapping.h')
-rw-r--r-- | source/include/mapping.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/mapping.h b/source/include/mapping.h index d2fb89d1de7..d4f2d28e6a1 100644 --- a/source/include/mapping.h +++ b/source/include/mapping.h @@ -55,7 +55,7 @@ typedef struct _GROUP_MAP { typedef struct _PRIVS { uint32 se_priv; - char *priv; - char *description; + const char *priv; + const char *description; } PRIVS; |