X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=apps%2Fopenssl.c;h=dfa23d674e4ed157f5ab0bb578f06958b4ef6884;hp=e4bf362fa0bd1b12d0b82f0924caecc95b2c6b67;hb=50acf46b925adb9fcaa0fb5e0ba592c5de37f580;hpb=7f9b7b074dd0fd8213947ec08802cdabaeb4ea41;ds=inline diff --git a/apps/openssl.c b/apps/openssl.c index e4bf362fa0..dfa23d674e 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -318,10 +318,26 @@ end: return(ret); } +static int SortFnByName(const void *_f1,const void *_f2) + { + const FUNCTION *f1=_f1; + const FUNCTION *f2=_f2; + + if(f1->type != f2->type) + return f1->type-f2->type; + return strcmp(f1->name,f2->name); + } + static LHASH *prog_init() { LHASH *ret; FUNCTION *f; + int i; + + /* Purely so it looks nice when the user hits ? */ + for(i=0,f=functions ; f->name != NULL ; ++f,++i) + ; + qsort(functions,i,sizeof *functions,SortFnByName); if ((ret=lh_new(hash,cmp)) == NULL) return(NULL);