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

Diff for /src/usr.bin/openssl/pkey.c between version 1.11 and 1.12

version 1.11, 2019/02/05 11:26:21 version 1.12, 2019/02/05 12:45:47
Line 56 
Line 56 
  *   *
  */   */
   
   #include <ctype.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
Line 184 
Line 185 
 show_ciphers(const OBJ_NAME *name, void *arg)  show_ciphers(const OBJ_NAME *name, void *arg)
 {  {
         static int n;          static int n;
   
           if (!islower((unsigned char)*name->name))
                   return;
   
         fprintf(stderr, " -%-24s%s", name->name, (++n % 3 ? "" : "\n"));          fprintf(stderr, " -%-24s%s", name->name, (++n % 3 ? "" : "\n"));
 }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12