aboutsummaryrefslogtreecommitdiff
path: root/src/dns
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-04-06 19:39:46 +0200
committerChristian Grothoff <christian@grothoff.org>2018-04-06 19:39:46 +0200
commit4e2412d14731d4da085b0ce353d3d9d2eb2a0756 (patch)
tree8c5bd2811d83b0b04089fdb136608b14b53a8c02 /src/dns
parent5bed6253dcde97fd7d6ea45d91d3ff95141d0fb7 (diff)
downloadgnunet-4e2412d14731d4da085b0ce353d3d9d2eb2a0756.tar.gz
gnunet-4e2412d14731d4da085b0ce353d3d9d2eb2a0756.zip
log unsupported rec types
Diffstat (limited to 'src/dns')
-rw-r--r--src/dns/gnunet-zoneimport.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dns/gnunet-zoneimport.c b/src/dns/gnunet-zoneimport.c
index 4284859ed..c1897d6e6 100644
--- a/src/dns/gnunet-zoneimport.c
+++ b/src/dns/gnunet-zoneimport.c
@@ -189,6 +189,11 @@ process_record (struct Request *req,
189 (unsigned int) rec->data.mx->preference, 189 (unsigned int) rec->data.mx->preference,
190 rec->data.mx->mxhost); 190 rec->data.mx->mxhost);
191 break; 191 break;
192 default:
193 fprintf (stderr,
194 "Unsupported type %u\n",
195 (unsigned int) rec->type);
196 break;
192 } 197 }
193} 198}
194 199