Changeset 21354 for trunk/src/crypt32/rootstore.c
- Timestamp:
- Feb 21, 2010, 5:32:09 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/src/crypt32/rootstore.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crypt32/rootstore.c
r21325 r21354 16 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 17 */ 18 18 19 #include <os2win.h> 19 20 #include <odinwrap.h> … … 22 23 #include <stdarg.h> 23 24 #include <stdio.h> 25 #include <string.h> 24 26 #include <sys/types.h> 25 27 #include <sys/stat.h> … … 28 30 #endif 29 31 #include <fcntl.h> 32 #if __IBMC__ || __IBMCPP__ 33 #include <io.h> 34 #endif 30 35 #ifdef HAVE_UNISTD_H 31 36 #include <unistd.h> … … 229 234 name = buf; 230 235 } 231 LocalFree( nameInfo);236 LocalFree((HANDLE)nameInfo); 232 237 } 233 238 return name; … … 299 304 TRACE("\n"); 300 305 301 fp = odin_fdopen(fd, "r");306 fp = fdopen(fd, "r"); 302 307 if (fp) 303 308 { … … 426 431 NULL, /* CERT_STORE_PROV_CLOSE_FUNC */ 427 432 NULL, /* CERT_STORE_PROV_READ_CERT_FUNC */ 428 CRYPT_RootWriteCert,429 CRYPT_RootDeleteCert,433 (void*)CRYPT_RootWriteCert, 434 (void*)CRYPT_RootDeleteCert, 430 435 NULL, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */ 431 436 NULL, /* CERT_STORE_PROV_READ_CRL_FUNC */ 432 CRYPT_RootWriteCRL,433 CRYPT_RootDeleteCRL,437 (void*)CRYPT_RootWriteCRL, 438 (void*)CRYPT_RootDeleteCRL, 434 439 NULL, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */ 435 440 NULL, /* CERT_STORE_PROV_READ_CTL_FUNC */
Note:
See TracChangeset
for help on using the changeset viewer.
