aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-06-26 13:43:09 +0200
committerChristian Grothoff <christian@grothoff.org>2018-06-26 13:43:19 +0200
commit62bf68287df9470ca6fb9134831cd137c06e0c22 (patch)
tree044e080b2f864a551efe7814339c7e815efb07b5 /src/util
parent0759e1e79accb055a4d175729b631d42486b08dc (diff)
downloadgnunet-62bf68287df9470ca6fb9134831cd137c06e0c22.tar.gz
gnunet-62bf68287df9470ca6fb9134831cd137c06e0c22.zip
fix postgres version check on Debian
Diffstat (limited to 'src/util')
-rw-r--r--src/util/dnsstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/dnsstub.c b/src/util/dnsstub.c
index 8b5b20f3c..5b84e6e63 100644
--- a/src/util/dnsstub.c
+++ b/src/util/dnsstub.c
@@ -354,7 +354,7 @@ do_dns_read (struct GNUNET_DNSSTUB_RequestSocket *rs,
354 "Received DNS response from server we never asked (ignored)"); 354 "Received DNS response from server we never asked (ignored)");
355 return GNUNET_NO; 355 return GNUNET_NO;
356 } 356 }
357 if (sizeof (struct GNUNET_TUN_DnsHeader) > r) 357 if (sizeof (struct GNUNET_TUN_DnsHeader) > (size_t) r)
358 { 358 {
359 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 359 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
360 _("Received DNS response that is too small (%u bytes)"), 360 _("Received DNS response that is too small (%u bytes)"),