diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-14 22:40:04 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-14 22:40:04 +0000 |
commit | 4c1791f13283df27338cd877e2087d519aaab05e (patch) | |
tree | b852de95aa307225befc78c54624811f3a79e344 /src/datastore/test_datastore_api.c | |
parent | 165f050555ce4f06380cc26c1dc09235c7b135e6 (diff) |
-bugfix, adding comments, fixing indent
Diffstat (limited to 'src/datastore/test_datastore_api.c')
-rw-r--r-- | src/datastore/test_datastore_api.c | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/src/datastore/test_datastore_api.c b/src/datastore/test_datastore_api.c index c505432100..12f2ef762e 100644 --- a/src/datastore/test_datastore_api.c +++ b/src/datastore/test_datastore_api.c @@ -197,7 +197,7 @@ check_success (void *cls, if (GNUNET_OK != success) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Operation %d/%d not successfull: `%s'\n", + "Operation %d/%d not successful: `%s'\n", crc->phase, crc->i, msg); @@ -410,8 +410,7 @@ run_continuation (void *cls, { case RP_PUT: GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Executing `%s' number %u\n", - "PUT", + "Executing PUT number %u\n", crc->i); GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key); GNUNET_DATASTORE_put (datastore, 0, &crc->key, get_size (crc->i), @@ -426,19 +425,17 @@ run_continuation (void *cls, case RP_GET: crc->i--; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Executing `%s' number %u\n", - "GET", + "Executing GET number %u\n", crc->i); GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key); GNUNET_DATASTORE_get_key (datastore, crc->offset, &crc->key, - get_type (crc->i), 1, 1, TIMEOUT, &check_value, - crc); + get_type (crc->i), 1, 1, TIMEOUT, + &check_value, crc); break; case RP_DEL: crc->i--; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Executing `%s' number %u\n", - "DEL", + "Executing DEL number %u\n", crc->i); crc->data = NULL; GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key); @@ -449,8 +446,7 @@ run_continuation (void *cls, break; case RP_DO_DEL: GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Executing `%s' number %u\n", - "DO_DEL", + "Executing DO_DEL number %u\n", crc->i); if (crc->i == 0) { @@ -469,8 +465,8 @@ run_continuation (void *cls, case RP_DELVALIDATE: crc->i--; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Executing `%s' number %u\n", - "DEL-VALIDATE", crc->i); + "Executing DELVALIDATE number %u\n", + crc->i); GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key); GNUNET_assert (NULL != GNUNET_DATASTORE_get_key (datastore, crc->offset, &crc->key, |