~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to apps/ciphers.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
#undef PROG
70
70
#define PROG    ciphers_main
71
71
 
72
 
static char *ciphers_usage[]={
 
72
static const char *ciphers_usage[]={
73
73
"usage: ciphers args\n",
74
74
" -v          - verbose mode, a textual listing of the ciphers in SSLeay\n",
75
75
" -ssl2       - SSL2 mode\n",
84
84
        {
85
85
        int ret=1,i;
86
86
        int verbose=0;
87
 
        char **pp;
 
87
        const char **pp;
88
88
        const char *p;
89
89
        int badops=0;
90
90
        SSL_CTX *ctx=NULL;