Add modes.h to mkdef.pl, update ordinals.
[oweals/openssl.git] / apps / req.c
index 65cb19b4ee986d504af026cb8d4fb28f42d28213..820cd18fc70d02e3149560abaddb28fc9097ed2d 100644 (file)
@@ -1336,11 +1336,17 @@ start2:                 for (;;)
 
                                BIO_snprintf(buf,sizeof buf,"%s_min",type);
                                if (!NCONF_get_number(req_conf,attr_sect,buf, &n_min))
+                                       {
+                                       ERR_clear_error();
                                        n_min = -1;
+                                       }
 
                                BIO_snprintf(buf,sizeof buf,"%s_max",type);
                                if (!NCONF_get_number(req_conf,attr_sect,buf, &n_max))
+                                       {
+                                       ERR_clear_error();
                                        n_max = -1;
+                                       }
 
                                if (!add_attribute_object(req,
                                        v->value,def,value,nid,n_min,n_max, chtype))