summaryrefslogtreecommitdiff
path: root/src/pq/test_pq.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
committerChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
commit1733de7305720882b8745e82b51b6ff47c10099e (patch)
treedf9199b0e8670b089ead17186b191b80629bda8f /src/pq/test_pq.c
parent60de5f48cbfc3868570284e91415ca7e06c390e1 (diff)
downloadgnunet-1733de7305720882b8745e82b51b6ff47c10099e.tar.gz
gnunet-1733de7305720882b8745e82b51b6ff47c10099e.zip
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/pq/test_pq.c')
-rw-r--r--src/pq/test_pq.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pq/test_pq.c b/src/pq/test_pq.c
index b9bf1be76..b8ffc6403 100644
--- a/src/pq/test_pq.c
+++ b/src/pq/test_pq.c
@@ -89,10 +89,10 @@ postgres_prepare (PGconn *db_conn)
89static int 89static int
90run_queries (PGconn *conn) 90run_queries (PGconn *conn)
91{ 91{
92 struct GNUNET_CRYPTO_rsa_PublicKey *pub; 92 struct GNUNET_CRYPTO_RsaPublicKey *pub;
93 struct GNUNET_CRYPTO_rsa_PublicKey *pub2 = NULL; 93 struct GNUNET_CRYPTO_RsaPublicKey *pub2 = NULL;
94 struct GNUNET_CRYPTO_rsa_Signature *sig; 94 struct GNUNET_CRYPTO_RsaSignature *sig;
95 struct GNUNET_CRYPTO_rsa_Signature *sig2 = NULL; 95 struct GNUNET_CRYPTO_RsaSignature *sig2 = NULL;
96 struct GNUNET_TIME_Absolute abs_time = GNUNET_TIME_absolute_get (); 96 struct GNUNET_TIME_Absolute abs_time = GNUNET_TIME_absolute_get ();
97 struct GNUNET_TIME_Absolute abs_time2; 97 struct GNUNET_TIME_Absolute abs_time2;
98 struct GNUNET_TIME_Absolute forever = GNUNET_TIME_UNIT_FOREVER_ABS; 98 struct GNUNET_TIME_Absolute forever = GNUNET_TIME_UNIT_FOREVER_ABS;
@@ -101,7 +101,7 @@ run_queries (PGconn *conn)
101 struct GNUNET_HashCode hc2; 101 struct GNUNET_HashCode hc2;
102 PGresult *result; 102 PGresult *result;
103 int ret; 103 int ret;
104 struct GNUNET_CRYPTO_rsa_PrivateKey *priv; 104 struct GNUNET_CRYPTO_RsaPrivateKey *priv;
105 char msg[] = "Hello"; 105 char msg[] = "Hello";
106 void *msg2; 106 void *msg2;
107 size_t msg2_len; 107 size_t msg2_len;