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 NSSPKI_H | 5 #ifndef NSSPKI_H |
10 #include "nsspki.h" | 6 #include "nsspki.h" |
11 #endif /* NSSPKI_H */ | 7 #endif /* NSSPKI_H */ |
12 | 8 |
13 #ifndef PKIT_H | 9 #ifndef PKIT_H |
14 #include "pkit.h" | 10 #include "pkit.h" |
15 #endif /* PKIT_H */ | 11 #endif /* PKIT_H */ |
16 | 12 |
17 #ifndef PKIM_H | 13 #ifndef PKIM_H |
18 #include "pkim.h" | 14 #include "pkim.h" |
(...skipping 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1167 nssCRL_GetEncoding ( | 1163 nssCRL_GetEncoding ( |
1168 NSSCRL *crl | 1164 NSSCRL *crl |
1169 ) | 1165 ) |
1170 { | 1166 { |
1171 if (crl && crl->encoding.data != NULL && crl->encoding.size > 0) { | 1167 if (crl && crl->encoding.data != NULL && crl->encoding.size > 0) { |
1172 return &crl->encoding; | 1168 return &crl->encoding; |
1173 } else { | 1169 } else { |
1174 return (NSSDER *)NULL; | 1170 return (NSSDER *)NULL; |
1175 } | 1171 } |
1176 } | 1172 } |
OLD | NEW |