diff options
| author | Sebastien Braun | 2010-07-19 11:54:18 +0200 |
|---|---|---|
| committer | Sebastien Braun | 2010-07-19 11:54:18 +0200 |
| commit | 6bddb17e02c8a1e9ce64e3881946e6f9c463feb1 (patch) | |
| tree | ce133db53c1ca05326d2d5c3b38f5b08fbfda758 | |
| parent | Implement initial multicast receive functionality in PVS daemon (diff) | |
| download | pvs-6bddb17e02c8a1e9ce64e3881946e6f9c463feb1.tar.gz pvs-6bddb17e02c8a1e9ce64e3881946e6f9c463feb1.tar.xz pvs-6bddb17e02c8a1e9ce64e3881946e6f9c463feb1.zip | |
Fix parsing of incoming MCASTFTRETRY messages
| -rw-r--r-- | src/pvs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pvs.cpp b/src/pvs.cpp index 8f06f74..0e5aaf5 100644 --- a/src/pvs.cpp +++ b/src/pvs.cpp @@ -185,7 +185,7 @@ void PVS::onCommand(PVSMsg cmdMessage) QStringList fields = message.split(':'); if (fields[0].compare(getUserName()) == 0) { - quint64 id = fields[0].toULongLong(); + quint64 id = fields[1].toULongLong(); PVSOutgoingMulticastTransfer* transfer = _outgoingTransfers.value(id, 0); if (transfer) transfer->retry(); |
