aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-22 14:11:46 +0000
committerChristian Grothoff <christian@grothoff.org>2015-05-22 14:11:46 +0000
commit2e7b955eb8e3d68d44727d9e18d4fa314c1a32e7 (patch)
tree1b0cd3700851cd8c6ba7e7b212ddb5649730558f
parentb64c5600f44e5f2358d9c0c111c3d1a11166bec4 (diff)
downloadgnunet-2e7b955eb8e3d68d44727d9e18d4fa314c1a32e7.tar.gz
gnunet-2e7b955eb8e3d68d44727d9e18d4fa314c1a32e7.zip
-fix cmp
-rw-r--r--src/ats/test_ats_lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ats/test_ats_lib.c b/src/ats/test_ats_lib.c
index fb0a84531..f1bd18278 100644
--- a/src/ats/test_ats_lib.c
+++ b/src/ats/test_ats_lib.c
@@ -756,10 +756,10 @@ interpreter (void *cls,
756 cmp = &update->details.update_address.properties; 756 cmp = &update->details.update_address.properties;
757 if ( (NULL != aid) && 757 if ( (NULL != aid) &&
758 (cmp->delay.rel_value_us == aid->properties.delay.rel_value_us) && 758 (cmp->delay.rel_value_us == aid->properties.delay.rel_value_us) &&
759 (cmp->delay.utilization_out == aid->properties.utilization_out) && 759 (cmp->utilization_out == aid->properties.utilization_out) &&
760 (cmp->delay.utilization_in == aid->properties.utilization_in) && 760 (cmp->utilization_in == aid->properties.utilization_in) &&
761 (cmp->delay.distance == aid->properties.distance) && 761 (cmp->distance == aid->properties.distance) &&
762 (cmp->delay.scope == aid->properties.scope) ) 762 (cmp->scope == aid->properties.scope) )
763 { 763 {
764 off++; 764 off++;
765 break; 765 break;