4576c1
diff --git a/common/options.c b/common/options.c
4576c1
index 40238f7..11b1961 100644
4576c1
--- a/common/options.c
4576c1
+++ b/common/options.c
4576c1
@@ -454,16 +454,16 @@ int fqdn_universe_decode (struct option_state *options,
4576c1
 		while (s < &bp -> data[0] + length + 2) {
4576c1
 			len = *s;
4576c1
 			if (len > 63) {
4576c1
-				log_info ("fancy bits in fqdn option");
4576c1
-				return 0;
4576c1
+				log_info ("label length exceeds 63 in fqdn option");
4576c1
+				goto bad;
4576c1
 			}
4576c1
 			if (len == 0) {
4576c1
 				terminated = 1;
4576c1
 				break;
4576c1
 			}
4576c1
 			if (s + len > &bp -> data [0] + length + 3) {
4576c1
-				log_info ("fqdn tag longer than buffer");
4576c1
-				return 0;
4576c1
+				log_info ("fqdn label longer than buffer");
4576c1
+				goto bad;
4576c1
 			}
4576c1
 
4576c1
 			if (first_len == 0) {