summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/NDR.pm
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-01-31 15:30:50 +0100
committerStefan Metzmacher <metze@samba.org>2008-02-01 07:09:38 +0100
commit0f9c453e12ffb03fc8359f726b1e93f3c7d17671 (patch)
treeeb27351b8b1b759e17916c9cdced3c4aeb869bc1 /source4/pidl/lib/Parse/Pidl/NDR.pm
parent95c5de1828aaf8692647544768afc8bfae1fab96 (diff)
downloadsamba-0f9c453e12ffb03fc8359f726b1e93f3c7d17671.tar.gz
samba-0f9c453e12ffb03fc8359f726b1e93f3c7d17671.tar.bz2
samba-0f9c453e12ffb03fc8359f726b1e93f3c7d17671.zip
pidl/IDL: don't strip ',' from the properties content
metze (This used to be commit fdf9bcb163516f7d96675ae0dce2917afb8f86d3)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/NDR.pm')
-rw-r--r--source4/pidl/lib/Parse/Pidl/NDR.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/NDR.pm b/source4/pidl/lib/Parse/Pidl/NDR.pm
index fc6bfe4c96..5a34c5f94f 100644
--- a/source4/pidl/lib/Parse/Pidl/NDR.pm
+++ b/source4/pidl/lib/Parse/Pidl/NDR.pm
@@ -688,7 +688,7 @@ sub ParseInterface($)
if (!defined $idl->{PROPERTIES}->{endpoint}) {
push @endpoints, "\"ncacn_np:[\\\\pipe\\\\" . $idl->{NAME} . "]\"";
} else {
- @endpoints = split / /, $idl->{PROPERTIES}->{endpoint};
+ @endpoints = split /,/, $idl->{PROPERTIES}->{endpoint};
}
return {