aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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