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

Side by Side Diff: openssl/crypto/dso/dso_null.c

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 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 | « openssl/crypto/dso/dso_lib.c ('k') | openssl/crypto/dso/dso_openssl.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* dso_null.c */ 1 /* dso_null.c */
2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL 2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
5 /* ==================================================================== 5 /* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 NULL, /* bind_func */ 71 NULL, /* bind_func */
72 /* For now, "unbind" doesn't exist */ 72 /* For now, "unbind" doesn't exist */
73 #if 0 73 #if 0
74 NULL, /* unbind_var */ 74 NULL, /* unbind_var */
75 NULL, /* unbind_func */ 75 NULL, /* unbind_func */
76 #endif 76 #endif
77 NULL, /* ctrl */ 77 NULL, /* ctrl */
78 NULL, /* dso_name_converter */ 78 NULL, /* dso_name_converter */
79 NULL, /* dso_merger */ 79 NULL, /* dso_merger */
80 NULL, /* init */ 80 NULL, /* init */
81 » NULL /* finish */ 81 » NULL, /* finish */
82 » NULL, /* pathbyaddr */
83 » NULL /* globallookup */
82 }; 84 };
83 85
84 DSO_METHOD *DSO_METHOD_null(void) 86 DSO_METHOD *DSO_METHOD_null(void)
85 { 87 {
86 return(&dso_meth_null); 88 return(&dso_meth_null);
87 } 89 }
88 90
OLDNEW
« no previous file with comments | « openssl/crypto/dso/dso_lib.c ('k') | openssl/crypto/dso/dso_openssl.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698