Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r1146 committed - fixed problem with reading data from incorrect variable

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r1146 committed - fixed problem with reading data from incorrect variable


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r1146 committed - fixed problem with reading data from incorrect variable
  • Date: Fri, 07 Nov 2014 09:00:39 +0000

Revision: 1146
Author:

Date: Fri Nov 7 09:00:32 2014 UTC
Log: fixed problem with reading data from incorrect variable
https://code.google.com/p/ndt/source/detail?r=1146

Modified:
/branches/MultiplePorts/src/test_c2s_clt.c

=======================================
--- /branches/MultiplePorts/src/test_c2s_clt.c Fri Nov 7 08:58:59 2014 UTC
+++ /branches/MultiplePorts/src/test_c2s_clt.c Fri Nov 7 09:00:32 2014 UTC
@@ -276,7 +276,7 @@
c2sspd = atoi(buff);
#ifdef EXTTESTS_ENABLED
if (throughputsnaps != NULL) {
- char* strtokptr = strtok(jsonMsgValue, " ");
+ char* strtokptr = strtok(buff, " ");
while ((strtokptr = strtok(NULL, " ")) != NULL) {
if (lastThroughputSnapshot != NULL) {
lastThroughputSnapshot->next = (struct throughputSnapshot*) malloc(sizeof(struct throughputSnapshot));


  • [ndt-dev] [ndt] r1146 committed - fixed problem with reading data from incorrect variable, ndt, 11/07/2014

Archive powered by MHonArc 2.6.16.

Top of Page