summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-04-12 18:02:11 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-04-16 14:35:34 +1000
commit4d872ff77f95b0aa48063d04cbc18e56f056bfc9 (patch)
treeb4d1fa4c648cd02e317078b42ffc9fb6e745dc7e /source3/param
parentdb44f35fc380e68cf3aa8d10c0851f7ce2d13ad1 (diff)
downloadsamba-4d872ff77f95b0aa48063d04cbc18e56f056bfc9.tar.gz
samba-4d872ff77f95b0aa48063d04cbc18e56f056bfc9.tar.bz2
samba-4d872ff77f95b0aa48063d04cbc18e56f056bfc9.zip
param: leave realm as a normal string, handle upper/lower case in handle_realm
This matches the behaviour of lib/param. Andrew Bartlett
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 17df977309..2fa70db1c9 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -528,7 +528,7 @@ static struct parm_struct parm_table[] = {
},
{
.label = "realm",
- .type = P_USTRING,
+ .type = P_STRING,
.p_class = P_GLOBAL,
.offset = GLOBAL_VAR(szRealm),
.special = handle_realm,