summaryrefslogtreecommitdiff
path: root/crypto/conf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-11-29 10:25:37 +0000
committerRichard Levitte <levitte@openssl.org>2003-11-29 10:25:37 +0000
commit3822740ce361f6efb31f782596ad1510ea501895 (patch)
treecbc487598c3c333432a1e14357dc998da5b433ff /crypto/conf
parent0d78bc3356823b8145d5fb99c33db68a141f80dd (diff)
downloadopenssl-new-3822740ce361f6efb31f782596ad1510ea501895.tar.gz
We're getting a clash with C++ because it has a type called 'list'.
Therefore, change all instances of the symbol 'list' to something else. PR: 758 Submitted by: Frédéric Giudicelli <groups@newpki.org>
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf_mod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/conf/conf_mod.c b/crypto/conf/conf_mod.c
index edcc08921c..8ceab6a21f 100644
--- a/crypto/conf/conf_mod.c
+++ b/crypto/conf/conf_mod.c
@@ -576,12 +576,12 @@ char *CONF_get1_default_config_file(void)
* be used to parse comma separated lists for example.
*/
-int CONF_parse_list(const char *list, int sep, int nospc,
+int CONF_parse_list(const char *list_, int sep, int nospc,
int (*list_cb)(const char *elem, int len, void *usr), void *arg)
{
int ret;
const char *lstart, *tmpend, *p;
- lstart = list;
+ lstart = list_;
for(;;)
{