Ignore:
Timestamp:
Feb 21, 2010, 5:32:09 PM (16 years ago)
Author:
rlwalsh
Message:

eliminate VACPP warning & info msgs - see Ticket #1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crypt32/rootstore.c

    r21325 r21354  
    1616 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
    1717 */
     18
    1819#include <os2win.h>
    1920#include <odinwrap.h>
     
    2223#include <stdarg.h>
    2324#include <stdio.h>
     25#include <string.h>
    2426#include <sys/types.h>
    2527#include <sys/stat.h>
     
    2830#endif
    2931#include <fcntl.h>
     32#if __IBMC__ || __IBMCPP__
     33#include <io.h>
     34#endif
    3035#ifdef HAVE_UNISTD_H
    3136#include <unistd.h>
     
    229234            name = buf;
    230235        }
    231         LocalFree(nameInfo);
     236        LocalFree((HANDLE)nameInfo);
    232237    }
    233238    return name;
     
    299304    TRACE("\n");
    300305
    301     fp = odin_fdopen(fd, "r");
     306    fp = fdopen(fd, "r");
    302307    if (fp)
    303308    {
     
    426431    NULL, /* CERT_STORE_PROV_CLOSE_FUNC */
    427432    NULL, /* CERT_STORE_PROV_READ_CERT_FUNC */
    428     CRYPT_RootWriteCert,
    429     CRYPT_RootDeleteCert,
     433    (void*)CRYPT_RootWriteCert,
     434    (void*)CRYPT_RootDeleteCert,
    430435    NULL, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */
    431436    NULL, /* CERT_STORE_PROV_READ_CRL_FUNC */
    432     CRYPT_RootWriteCRL,
    433     CRYPT_RootDeleteCRL,
     437    (void*)CRYPT_RootWriteCRL,
     438    (void*)CRYPT_RootDeleteCRL,
    434439    NULL, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */
    435440    NULL, /* CERT_STORE_PROV_READ_CTL_FUNC */
Note: See TracChangeset for help on using the changeset viewer.