[BACK]Return to openssl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/openssl.c between version 1.4 and 1.5

version 1.4, 2015/08/19 18:25:31 version 1.5, 2015/08/22 16:36:05
Line 133 
Line 133 
 #include "progs.h"  #include "progs.h"
 #include "s_apps.h"  #include "s_apps.h"
   
   #define FUNC_TYPE_GENERAL       1
   #define FUNC_TYPE_MD            2
   #define FUNC_TYPE_CIPHER        3
   #define FUNC_TYPE_PKEY          4
   #define FUNC_TYPE_MD_ALG        5
   #define FUNC_TYPE_CIPHER_ALG    6
   
   typedef struct {
           int type;
           const char *name;
           int (*func)(int argc, char **argv);
   } FUNCTION;
   
   DECLARE_LHASH_OF(FUNCTION);
   
 FUNCTION functions[] = {  FUNCTION functions[] = {
   
         /* General functions. */          /* General functions. */

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5