summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-02-04 06:28:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:33 -0500
commitaa747a5712c9c55b2862c5c0eb35f04ed37e2be4 (patch)
tree479aebc70922ab912e4869f24eb792dc415985ce /source4/build
parent6348a343de14daa4bf1d037d8e72e603a5d94383 (diff)
downloadsamba-aa747a5712c9c55b2862c5c0eb35f04ed37e2be4.tar.gz
samba-aa747a5712c9c55b2862c5c0eb35f04ed37e2be4.tar.bz2
samba-aa747a5712c9c55b2862c5c0eb35f04ed37e2be4.zip
r5223: Rename dom_sid2 to dom_sid as we don't care about the difference
for the swig wrappers. (This used to be commit edb32b9b5175f720bce110bf2bb4cf136ed47142)
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/pidl/swig.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/build/pidl/swig.pm b/source4/build/pidl/swig.pm
index 68d67b4879..2b8daf40ff 100644
--- a/source4/build/pidl/swig.pm
+++ b/source4/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;