diff options
Diffstat (limited to 'src/plugins/sig.c')
-rw-r--r-- | src/plugins/sig.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/sig.c b/src/plugins/sig.c index 6f1f8404c..1872d48ff 100644 --- a/src/plugins/sig.c +++ b/src/plugins/sig.c @@ -26,13 +26,15 @@ PLUGIN_EVENTS_TABLE = { ////////////////////////////////////// #if defined(_WIN32) || defined(MINGW) - int sig_init() { + int sig_init() + { ShowError("sig: This plugin is not supported - Enable 'exchndl' instead!\n"); return 0; } int sig_final() { return 0; } #elif defined (__NETBSD__) || defined (__FREEBSD__) - int sig_init() { + int sig_init() + { ShowError("sig: This plugin is not supported!\n"); return 0; } |