summaryrefslogtreecommitdiff
path: root/mysys/my_dlerror.c
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2017-03-05 15:50:32 +0100
committerSergei Golubchik <serg@mariadb.org>2017-03-10 18:21:26 +0100
commit6cddd12ad6eeea82b1087574e5dd5cb9accd7641 (patch)
tree5b3ac96d47d06c4345b19383c12e0c54bcdd2fc6 /mysys/my_dlerror.c
parent2b1bbac5fa881b8e135dbad3e0ff6b9e2763e24d (diff)
downloadmariadb-git-6cddd12ad6eeea82b1087574e5dd5cb9accd7641.tar.gz
make sql_udf.cc to shorten dlerror() messages
just as sql_plugin.cc does
Diffstat (limited to 'mysys/my_dlerror.c')
-rw-r--r--mysys/my_dlerror.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/mysys/my_dlerror.c b/mysys/my_dlerror.c
new file mode 100644
index 00000000000..db21b7fc274
--- /dev/null
+++ b/mysys/my_dlerror.c
@@ -0,0 +1,31 @@
+/*
+ Copyright (c) 2017, MariaDB
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+
+#include <my_global.h>
+#include <string.h>
+
+const char *my_dlerror(const char *dlpath)
+{
+ const char *errmsg=dlerror();
+ size_t dlpathlen= strlen(dlpath);
+ if (!strncmp(dlpath, errmsg, dlpathlen))
+ { /* if errmsg starts from dlpath, trim this prefix */
+ errmsg+=dlpathlen;
+ if (*errmsg == ':') errmsg++;
+ if (*errmsg == ' ') errmsg++;
+ }
+ return errmsg;
+}