diff options
| author | Charles E. Rolke <chug@apache.org> | 2014-02-21 15:19:57 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2014-02-21 15:19:57 +0000 |
| commit | 7744a78e8f5c120c4eac13b0fa2f780de542ca26 (patch) | |
| tree | 0e7329c10aec068bd4b83803ee99fb968ad2334d /qpid/cpp | |
| parent | a45f27637fd3b2ca1f83dd86d73c76d43bbe427f (diff) | |
| download | qpid-python-7744a78e8f5c120c4eac13b0fa2f780de542ca26.tar.gz | |
QPID-5575: csharp.map.receiver example throws referencing connectionOptions arg
Dereference proper arg.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1570603 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/bindings/qpid/dotnet/examples/csharp.map.receiver/csharp.map.receiver.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/bindings/qpid/dotnet/examples/csharp.map.receiver/csharp.map.receiver.cs b/qpid/cpp/bindings/qpid/dotnet/examples/csharp.map.receiver/csharp.map.receiver.cs index 5219ee789a..f8bd9e9294 100644 --- a/qpid/cpp/bindings/qpid/dotnet/examples/csharp.map.receiver/csharp.map.receiver.cs +++ b/qpid/cpp/bindings/qpid/dotnet/examples/csharp.map.receiver/csharp.map.receiver.cs @@ -43,7 +43,7 @@ namespace Org.Apache.Qpid.Messaging.examples if (args.Length > 1)
address = args[1];
if (args.Length > 2)
- connectionOptions = args[3];
+ connectionOptions = args[2];
//
// Create and open an AMQP connection to the broker URL
|
