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 DEVM_H | 9 #ifndef DEVM_H |
14 #include "devm.h" | 10 #include "devm.h" |
15 #endif /* DEVM_H */ | 11 #endif /* DEVM_H */ |
16 | 12 |
17 #include "pki3hack.h" | 13 #include "pki3hack.h" |
18 #include "dev3hack.h" | 14 #include "dev3hack.h" |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 | 296 |
301 NSS_IMPLEMENT PRStatus | 297 NSS_IMPLEMENT PRStatus |
302 nssToken_NotifyCertsNotVisible | 298 nssToken_NotifyCertsNotVisible |
303 ( | 299 ( |
304 NSSToken *tok | 300 NSSToken *tok |
305 ) | 301 ) |
306 { | 302 { |
307 return nssTrustDomain_RemoveTokenCertsFromCache(tok->trustDomain, tok); | 303 return nssTrustDomain_RemoveTokenCertsFromCache(tok->trustDomain, tok); |
308 } | 304 } |
309 | 305 |
OLD | NEW |