diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-07 07:16:07 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-07 07:16:07 +0200 |
commit | 111962c65afd9fb0e99c1a7ea54c558b4e77a4b0 (patch) | |
tree | bd5c995643395233a8b85fce0cfbb076657eefc8 /src/core/wee-command.c | |
parent | e09dc5f63b25266c282b187bce88ea984a13106b (diff) | |
download | weechat-111962c65afd9fb0e99c1a7ea54c558b4e77a4b0.zip |
core: remove unused function command_secure_display_data (issue #1012)
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r-- | src/core/wee-command.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 7d0f014a6..fee94fc5b 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -5236,24 +5236,6 @@ COMMAND_CALLBACK(save) } /* - * Displays a secured data. - */ - -void -command_secure_display_data (void *data, - struct t_hashtable *hashtable, - const void *key, const void *value) -{ - /* make C compiler happy */ - (void) data; - (void) hashtable; - (void) value; - - if (key) - gui_chat_printf (NULL, " %s", key); -} - -/* * Callback for command "/secure": manage secured data */ |