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 DEV_H | 5 #ifndef DEV_H |
10 #include "dev.h" | 6 #include "dev.h" |
11 #endif /* DEV_H */ | 7 #endif /* DEV_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 #ifndef PKISTORE_H | 13 #ifndef PKISTORE_H |
18 #include "pkistore.h" | 14 #include "pkistore.h" |
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 | 973 |
978 NSS_IMPLEMENT NSSCryptoContext * | 974 NSS_IMPLEMENT NSSCryptoContext * |
979 NSSCryptoContext_Clone ( | 975 NSSCryptoContext_Clone ( |
980 NSSCryptoContext *cc | 976 NSSCryptoContext *cc |
981 ) | 977 ) |
982 { | 978 { |
983 nss_SetError(NSS_ERROR_NOT_FOUND); | 979 nss_SetError(NSS_ERROR_NOT_FOUND); |
984 return NULL; | 980 return NULL; |
985 } | 981 } |
986 | 982 |
OLD | NEW |