diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-03-11 09:01:00 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-03-11 11:02:23 +0100 |
commit | 6771ade5e7933af57b286870d73e7773521b8fdd (patch) | |
tree | 8857327462099bcf31be5e57b4bdc3dd63d191b4 /pidl | |
parent | f3465da07242cfa3f45da668c7ffa86e8beacf0e (diff) | |
download | samba-6771ade5e7933af57b286870d73e7773521b8fdd.tar.gz samba-6771ade5e7933af57b286870d73e7773521b8fdd.tar.bz2 samba-6771ade5e7933af57b286870d73e7773521b8fdd.zip |
pidl:Samba4/NDR/Client: fix arguments to warning()
We want the file:line: information displayed.
metze
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm index ab4f524b9f..c796b466ad 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm @@ -743,7 +743,7 @@ sub ParseFunction($$$) $self->pidl_both(" * dcerpc_$fn->{NAME}()"); $self->pidl_both(" */"); $self->pidl_both(""); - warning($fn, "$fn->{NAME}: dcerpc client does not support pipe yet"); + warning($fn->{ORIGINAL}, "$fn->{NAME}: dcerpc client does not support pipe yet"); return; } |