OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifdef DEBUG | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 #ifndef PKIT_H | 5 #ifndef PKIT_H |
10 #include "pkit.h" | 6 #include "pkit.h" |
11 #endif /* PKIT_H */ | 7 #endif /* PKIT_H */ |
12 | 8 |
13 #ifndef PKIM_H | 9 #ifndef PKIM_H |
14 #include "pkim.h" | 10 #include "pkim.h" |
15 #endif /* PKIM_H */ | 11 #endif /* PKIM_H */ |
16 | 12 |
17 /* This is defined in pki3hack.c */ | 13 /* This is defined in pki3hack.c */ |
18 NSS_EXTERN nssDecodedCert * | 14 NSS_EXTERN nssDecodedCert * |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 return nssDecodedPKIXCertificate_Destroy(dc); | 56 return nssDecodedPKIXCertificate_Destroy(dc); |
61 default: | 57 default: |
62 #if 0 | 58 #if 0 |
63 nss_SetError(NSS_ERROR_INVALID_ARGUMENT); | 59 nss_SetError(NSS_ERROR_INVALID_ARGUMENT); |
64 #endif | 60 #endif |
65 break; | 61 break; |
66 } | 62 } |
67 return PR_FAILURE; | 63 return PR_FAILURE; |
68 } | 64 } |
69 | 65 |
OLD | NEW |