diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-09 12:51:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:19:27 -0500 |
commit | 5ed139f096a0bd8600d9df1c89ca2d1c136646c0 (patch) | |
tree | 090e13983c4b8eb4037022ab7ef7645a2a75a420 /source4/build/pidl | |
parent | cd88764ba16bc35f0209fbdf1a975f10bd3eb9ac (diff) | |
download | samba-5ed139f096a0bd8600d9df1c89ca2d1c136646c0.tar.gz samba-5ed139f096a0bd8600d9df1c89ca2d1c136646c0.tar.bz2 samba-5ed139f096a0bd8600d9df1c89ca2d1c136646c0.zip |
r8261: charset style strings in pidl should be const, just like old style ndr strings
(This used to be commit aa0e1d6699959571963d6e6fb455b33c4436dcdf)
Diffstat (limited to 'source4/build/pidl')
-rw-r--r-- | source4/build/pidl/ndr_header.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/ndr_header.pm b/source4/build/pidl/ndr_header.pm index 33183cec96..0e0d4f5725 100644 --- a/source4/build/pidl/ndr_header.pm +++ b/source4/build/pidl/ndr_header.pm @@ -214,7 +214,7 @@ sub HeaderType($$$) } if (util::has_property($e, "charset")) { - pidl "char"; + pidl "const char"; } else { pidl typelist::mapType($e->{TYPE}); } |