summaryrefslogtreecommitdiff
path: root/source4/lib/charset/iconv.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-08-27 18:43:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:02:55 -0500
commited8d04ead92839d54ca67f55a8e2be9723dc6b0d (patch)
tree414bb012528924e48b37c26bbf7c80c99f0741e3 /source4/lib/charset/iconv.c
parentf93a18eeb7d1f748a7b026d7eae064bfefa5c5f5 (diff)
downloadsamba-ed8d04ead92839d54ca67f55a8e2be9723dc6b0d.tar.gz
samba-ed8d04ead92839d54ca67f55a8e2be9723dc6b0d.tar.bz2
samba-ed8d04ead92839d54ca67f55a8e2be9723dc6b0d.zip
r24717: Some more easy bool conversions, update TODO for registry
(This used to be commit fc8771fb6aab815e63334da0159032f7ecd0a931)
Diffstat (limited to 'source4/lib/charset/iconv.c')
-rw-r--r--source4/lib/charset/iconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/charset/iconv.c b/source4/lib/charset/iconv.c
index d10b3bb03c..4eda585d4e 100644
--- a/source4/lib/charset/iconv.c
+++ b/source4/lib/charset/iconv.c
@@ -199,7 +199,7 @@ smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode)
}
#ifdef HAVE_NATIVE_ICONV
- if ((!from || !to) && !lp_parm_bool(-1, "iconv", "native", True)) {
+ if ((!from || !to) && !lp_parm_bool(-1, "iconv", "native", true)) {
goto failed;
}
if (!from) {