From: Richard Levitte Date: Wed, 29 May 2002 11:04:39 +0000 (+0000) Subject: It seems like we forgot to move from strdup() to BUF_strdup() in this file. X-Git-Tag: OpenSSL-engine-0_9_6e~20 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7462f2644c75ee01fac55b07aaf2b2626dcbe24d;p=oweals%2Fopenssl.git It seems like we forgot to move from strdup() to BUF_strdup() in this file. PR: 54 --- diff --git a/crypto/engine/enginetest.c b/crypto/engine/enginetest.c index 23987a8806..5eb97026c1 100644 --- a/crypto/engine/enginetest.c +++ b/crypto/engine/enginetest.c @@ -56,11 +56,9 @@ * */ -#define _XOPEN_SOURCE_EXTENDED /* to get a proper declaration of strdup() */ -#define _XOPEN_SOURCE 500 - #include #include +#include #include #include @@ -198,9 +196,9 @@ int main(int argc, char *argv[]) for(loop = 0; loop < 512; loop++) { sprintf(buf, "id%i", loop); - id = strdup(buf); + id = BUF_strdup(buf); sprintf(buf, "Fake engine type %i", loop); - name = strdup(buf); + name = BUF_strdup(buf); if(((block[loop] = ENGINE_new()) == NULL) || !ENGINE_set_id(block[loop], id) || !ENGINE_set_name(block[loop], name))