summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2019-11-16 15:59:16 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2019-11-16 15:59:16 +0100
commit9c0e462ff28b93127406eeb2db4b763423fabbe3 (patch)
treec51afeae0098caf6f3f4138b13115da85b428b72 /storage
parent2cb4b152c8fc7bc5156961c2f87e5274d228377d (diff)
downloadmariadb-git-9c0e462ff28b93127406eeb2db4b763423fabbe3.tar.gz
Fix missing declaration in tabrest.cpp causing compiling failure on Linux
Diffstat (limited to 'storage')
-rw-r--r--storage/connect/tabrest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabrest.cpp b/storage/connect/tabrest.cpp
index dde0411592e..de8383a838d 100644
--- a/storage/connect/tabrest.cpp
+++ b/storage/connect/tabrest.cpp
@@ -133,7 +133,7 @@ XGETREST GetRestFunction(PGLOBAL g)
} // endif Hdll
// Get the function returning an instance of the external DEF class
- if (!(getRestFnc = (XGETREST)dlsym(Hdll, "restGetFile"))) {
+ if (!(getRestFnc = (XGETREST)dlsym(Hso, "restGetFile"))) {
error = dlerror();
sprintf(g->Message, MSG(GET_FUNC_ERR), "restGetFile", SVP(error));
dlclose(Hso);