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