summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-02-04 06:28:50 +0000
committerTim Potter <tpot@samba.org>2005-02-04 06:28:50 +0000
commitd1441f3ef1fab90a2e9264f5cd6075a9848730b2 (patch)
tree774d31c050fe2e522a1b7cec85e1637b0e4e4f61
parentddb393d9a971064425787d32d68d9edefc8a4b41 (diff)
downloadsamba-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.pm6
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;