summaryrefslogtreecommitdiff
path: root/src/pq/db_pq.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-15 14:46:03 +0200
committerChristian Grothoff <christian@grothoff.org>2015-05-15 14:46:03 +0200
commit85f198ef32012b02d72a7e4af2924f69b6625f73 (patch)
tree6cd703901b84a51dbf293a98e61331ca426c2597 /src/pq/db_pq.c
parent955054bf25222be9c3942f695e74c8195627405c (diff)
downloadexchange-85f198ef32012b02d72a7e4af2924f69b6625f73.tar.gz
exchange-85f198ef32012b02d72a7e4af2924f69b6625f73.tar.bz2
exchange-85f198ef32012b02d72a7e4af2924f69b6625f73.zip
getting test to pass
Diffstat (limited to 'src/pq/db_pq.c')
-rw-r--r--src/pq/db_pq.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pq/db_pq.c b/src/pq/db_pq.c
index 3b39645a7..bb18c56a9 100644
--- a/src/pq/db_pq.c
+++ b/src/pq/db_pq.c
@@ -178,8 +178,6 @@ TALER_PQ_exec_prepared (PGconn *db_conn,
at_nbo = GNUNET_new (struct GNUNET_TIME_AbsoluteNBO);
scratch[soff++] = at_nbo;
- /* FIXME: this does not work for 'forever' as PQ uses 63-bit integers;
- should check and handle! (Need testcase!) */
*at_nbo = GNUNET_TIME_absolute_hton (*at_hbo);
param_values[off] = (void *) at_nbo;
param_lengths[off] = sizeof (struct GNUNET_TIME_AbsoluteNBO);
@@ -537,8 +535,6 @@ TALER_PQ_extract_result (PGresult *result,
PQgetvalue (result,
row,
fnum);
- /* FIXME: this does not work for 'forever' as PQ uses 63-bit integers;
- should check and handle! (Need testcase!) */
*dst = GNUNET_TIME_absolute_ntoh (*res);
break;
}