.travis.yml: exclude gcc from MacOS X CI builds.
[openssl.git] / ssl / t1_ext.c
index 396ad7e171ce6633e49d866b9ec751a7589f6125..09f10440396c2ae492528e039b0c9c767136d90b 100644 (file)
@@ -1,4 +1,3 @@
-/* ssl/t1_ext.c */
 /* ====================================================================
  * Copyright (c) 2014 The OpenSSL Project.  All rights reserved.
  *
@@ -183,7 +182,7 @@ int custom_exts_copy(custom_ext_methods *dst, const custom_ext_methods *src)
 {
     if (src->meths_count) {
         dst->meths =
-            BUF_memdup(src->meths,
+            OPENSSL_memdup(src->meths,
                        sizeof(custom_ext_method) * src->meths_count);
         if (dst->meths == NULL)
             return 0;