Dr. Stephen Henson wrote:
  OpenSSL CVS Repository
  http://cvs.openssl.org/
  ____________________________________________________________________________

  Server: cvs.openssl.org                  Name:   Dr. Stephen Henson
  Root:   /v/openssl/cvs                   Email:  [EMAIL PROTECTED]
  Module: openssl                          Date:   31-May-2008 21:28:58
  Branch: HEAD                             Handle: 2008053120285700

  Modified files:
    openssl/apps            ca.c

  Log:
    Stop const mismatch warning.

I do wish you'd find ways to fix these that don't involve casts!


  Summary:
    Revision    Changes     Path
    1.160       +1  -1      openssl/apps/ca.c
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openssl/apps/ca.c
  ============================================================================
  $ cvs diff -u -r1.159 -r1.160 ca.c
  --- openssl/apps/ca.c 26 May 2008 11:24:18 -0000      1.159
  +++ openssl/apps/ca.c 31 May 2008 19:28:57 -0000      1.160
  @@ -2481,7 +2481,7 @@
                goto err;
}
  -     else if (index_name_cmp(row,rrow))
  +     else if (index_name_cmp((const CSTRING *)row,(const CSTRING *)rrow))
                {
                BIO_printf(bio_err,"ERROR:name does not match %s\n",
                           row[DB_name]);
  @@ .
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
CVS Repository Commit List                     [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]




--
http://www.apache-ssl.org/ben.html           http://www.links.org/

"There is no limit to what a man can do or how far he can go if he
doesn't mind who gets the credit." - Robert Woodruff
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to