From: Andrew Bartlett Date: Mon, 28 May 2012 06:26:11 +0000 (+1000) Subject: param: mark realm parameter as const X-Git-Tag: samba-4.0.0beta1~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0d53009383ed9055f8daaf2f589e8c32cdeb3d8;p=thirdparty%2Fsamba.git param: mark realm parameter as const --- diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index ba0f738f0e4..3ac5a4dd27a 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1564,6 +1564,7 @@ FN_GLOBAL_BOOL(writeraw, bWriteRaw) FN_GLOBAL_CONST_STRING(dns_forwarder, dns_forwarder) FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, szNTPSignDSocketDirectory) FN_GLOBAL_CONST_STRING(passwordserver, szPasswordServer) +FN_GLOBAL_CONST_STRING(realm, szRealm_upper) FN_GLOBAL_CONST_STRING(template_homedir, szTemplateHomedir) FN_GLOBAL_CONST_STRING(template_shell, szTemplateShell) FN_GLOBAL_CONST_STRING(winbindd_privileged_socket_directory, szWinbinddPrivilegedSocketDirectory) @@ -1613,7 +1614,6 @@ FN_GLOBAL_STRING(passdb_backend, passdb_backend) FN_GLOBAL_STRING(passwd_chat, szPasswdChat) FN_GLOBAL_STRING(piddir, szPidDir) FN_GLOBAL_STRING(private_dir, szPrivateDir) -FN_GLOBAL_STRING(realm, szRealm_upper) FN_GLOBAL_STRING(serverstring, szServerString) FN_GLOBAL_STRING(share_backend, szShareBackend) FN_GLOBAL_STRING(socket_address, szSocketAddress)