]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/engine.c
Rename some BUF_xxx to OPENSSL_xxx
[thirdparty/openssl.git] / apps / engine.c
index 17e6f789f7d543639060b96307214c4efea3256c..c373df579c240f743a895c5759392524afa6f3db 100644 (file)
@@ -109,8 +109,8 @@ static int append_buf(char **buf, const char *s, int *size, int step)
         return 0;
 
     if (**buf != '\0')
-        BUF_strlcat(*buf, ", ", *size);
-    BUF_strlcat(*buf, s, *size);
+        OPENSSL_strlcat(*buf, ", ", *size);
+    OPENSSL_strlcat(*buf, s, *size);
 
     return 1;
 }