summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qpid/cpp/bindings/qpid/perl/lib/qpid/messaging/Session.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/bindings/qpid/perl/lib/qpid/messaging/Session.pm b/qpid/cpp/bindings/qpid/perl/lib/qpid/messaging/Session.pm
index af85731685..316f1fa817 100644
--- a/qpid/cpp/bindings/qpid/perl/lib/qpid/messaging/Session.pm
+++ b/qpid/cpp/bindings/qpid/perl/lib/qpid/messaging/Session.pm
@@ -112,7 +112,7 @@ sub rollback {
=over
-=item $session->acknowledge( msg )
+=item $session->acknowledge
Acknowledges that a specific message that has been received.
@@ -149,7 +149,7 @@ sub reject {
my ($self) = @_;
my $impl = $self->{_impl};
- $impl->reject($_[1]);
+ $impl->reject($_[1]->get_implementation);
}
=pod
@@ -168,7 +168,7 @@ sub release {
my ($self) = @_;
my $impl = $self->{_impl};
- $impl->release($_[1]);
+ $impl->release($_[1]->get_implementation);
}
=pod