From ef483036b71163f5683b0f03f95b79d09fc4beff Mon Sep 17 00:00:00 2001 From: Sergei Krivonos Date: Fri, 29 Oct 2021 21:01:28 +0300 Subject: MDEV-19129: Xcode compatibility update: deprecated vfork -> fork --- storage/connect/tabrest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/connect/tabrest.cpp b/storage/connect/tabrest.cpp index c66d8d76f3d..6e8c96a27cb 100644 --- a/storage/connect/tabrest.cpp +++ b/storage/connect/tabrest.cpp @@ -112,7 +112,7 @@ int Xcurl(PGLOBAL g, PCSZ Http, PCSZ Uri, PCSZ filename) } // endif f - pID = vfork(); + pID = fork(); sprintf(fn, "-o%s", filename); if (pID == 0) { -- cgit v1.2.1