diff options
author | Tim Potter <tpot@samba.org> | 2005-02-04 06:28:50 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2005-02-04 06:28:50 +0000 |
commit | d1441f3ef1fab90a2e9264f5cd6075a9848730b2 (patch) | |
tree | 774d31c050fe2e522a1b7cec85e1637b0e4e4f61 | |
parent | ddb393d9a971064425787d32d68d9edefc8a4b41 (diff) | |
download | samba-d1441f3ef1fab90a2e9264f5cd6075a9848730b2.tar.gz samba-d1441f3ef1fab90a2e9264f5cd6075a9848730b2.tar.xz samba-d1441f3ef1fab90a2e9264f5cd6075a9848730b2.zip |
r5223: Rename dom_sid2 to dom_sid as we don't care about the difference
for the swig wrappers.
-rw-r--r-- | source/build/pidl/swig.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/build/pidl/swig.pm b/source/build/pidl/swig.pm index 68d67b4879a..2b8daf40ffe 100644 --- a/source/build/pidl/swig.pm +++ b/source/build/pidl/swig.pm @@ -704,6 +704,11 @@ sub RewriteHeader($$$) while(<IN>) { + # Rename dom_sid2 to dom_sid as we don't care about the difference + # for the swig wrappers. + + s/dom_sid2/dom_sid/g; + # Copy structure definitions if (/^struct .*? {$/ .. /^\};$/) { @@ -742,5 +747,4 @@ sub RewriteC($$$) close(OUT); } - 1; |