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 PKIM_H | 5 #ifndef PKIM_H |
10 #include "pkim.h" | 6 #include "pkim.h" |
11 #endif /* PKIM_H */ | 7 #endif /* PKIM_H */ |
12 | 8 |
13 #ifndef PKI_H | 9 #ifndef PKI_H |
14 #include "pki.h" | 10 #include "pki.h" |
15 #endif /* PKI_H */ | 11 #endif /* PKI_H */ |
16 | 12 |
17 #ifndef NSSPKI_H | 13 #ifndef NSSPKI_H |
18 #include "nsspki.h" | 14 #include "nsspki.h" |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 nssCertificateStore *store, | 730 nssCertificateStore *store, |
735 void (* cert_dump_iter)(const void *, void *, void *), | 731 void (* cert_dump_iter)(const void *, void *, void *), |
736 void *arg | 732 void *arg |
737 ) | 733 ) |
738 { | 734 { |
739 PZ_Lock(store->lock); | 735 PZ_Lock(store->lock); |
740 nssHash_Iterate(store->issuer_and_serial, cert_dump_iter, arg); | 736 nssHash_Iterate(store->issuer_and_serial, cert_dump_iter, arg); |
741 PZ_Unlock(store->lock); | 737 PZ_Unlock(store->lock); |
742 } | 738 } |
743 | 739 |
OLD | NEW |