diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-12-16 19:39:00 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-12-16 19:39:00 +0400 |
commit | 90ea0145856338221803ebb9b446ed2a6e082412 (patch) | |
tree | 56c4b912a8156d5b3c4a8986ecbebe7b9833aa98 /include/my_sys.h | |
parent | 71eee693b2ffadaf3d3ae9f68d5a723d9e4b503a (diff) | |
download | mariadb-git-90ea0145856338221803ebb9b446ed2a6e082412.tar.gz |
MDEV-8378 - Debian: the Lintian complains about many "shlib-calls-exit" in manymariadb-10.0.23
of the plugins
Removed exit() from daemon_example, pass error to caller instead.
Also removed unused my_abort_hook.
Diffstat (limited to 'include/my_sys.h')
-rw-r--r-- | include/my_sys.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 036084a0ae0..a0b7f4cc554 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -259,8 +259,7 @@ extern myf my_global_flags; /* Set to MY_WME for more error messages /* Point to current my_message() */ extern void (*my_sigtstp_cleanup)(void), /* Executed before jump to shell */ - (*my_sigtstp_restart)(void), - (*my_abort_hook)(int); + (*my_sigtstp_restart)(void); /* Executed when comming from shell */ extern MYSQL_PLUGIN_IMPORT int my_umask; /* Default creation mask */ extern int my_umask_dir, |