Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(506)

Side by Side Diff: nss/lib/dev/devutil.c

Issue 16285003: Remove CVS keywords from NSS source files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nss/lib/dev/devtoken.c ('k') | nss/lib/dev/nssdev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 DEVM_H 5 #ifndef DEVM_H
10 #include "devm.h" 6 #include "devm.h"
11 #endif /* DEVM_H */ 7 #endif /* DEVM_H */
12 8
13 #ifndef CKHELPER_H 9 #ifndef CKHELPER_H
14 #include "ckhelper.h" 10 #include "ckhelper.h"
15 #endif /* CKHELPER_H */ 11 #endif /* CKHELPER_H */
16 12
17 NSS_IMPLEMENT nssCryptokiObject * 13 NSS_IMPLEMENT nssCryptokiObject *
18 nssCryptokiObject_Create ( 14 nssCryptokiObject_Create (
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 NSSAlgorithmAndParameters *rvAP = NULL; 997 NSSAlgorithmAndParameters *rvAP = NULL;
1002 rvAP = nss_ZNEW(arenaOpt, NSSAlgorithmAndParameters); 998 rvAP = nss_ZNEW(arenaOpt, NSSAlgorithmAndParameters);
1003 if (rvAP) { 999 if (rvAP) {
1004 rvAP->mechanism.mechanism = CKM_MD5; 1000 rvAP->mechanism.mechanism = CKM_MD5;
1005 rvAP->mechanism.pParameter = NULL; 1001 rvAP->mechanism.pParameter = NULL;
1006 rvAP->mechanism.ulParameterLen = 0; 1002 rvAP->mechanism.ulParameterLen = 0;
1007 } 1003 }
1008 return rvAP; 1004 return rvAP;
1009 } 1005 }
1010 1006
OLDNEW
« no previous file with comments | « nss/lib/dev/devtoken.c ('k') | nss/lib/dev/nssdev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698