summaryrefslogtreecommitdiff
path: root/src/common/history.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2007-05-11 14:59:12 +0000
committerSebastien Helleu <flashcode@flashtux.org>2007-05-11 14:59:12 +0000
commitbee62989f622d6bc8785207f47cff68edb196d14 (patch)
tree175df1f7f8fcae5aa21b8a96e9736009c0ee31b5 /src/common/history.c
parent7579529d94514dd2c98815017e1344008f766d53 (diff)
downloadweechat-bee62989f622d6bc8785207f47cff68edb196d14.zip
Code cleanup: renamed IRC functions to have uniform name (with prefix based on source name), moved some functions
Diffstat (limited to 'src/common/history.c')
-rw-r--r--src/common/history.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/history.c b/src/common/history.c
index 8e260b7d9..ab222332f 100644
--- a/src/common/history.c
+++ b/src/common/history.c
@@ -62,7 +62,7 @@ history_buffer_add (void *buffer, char *string)
{
new_history->text = strdup (string);
if (cfg_log_hide_nickserv_pwd)
- irc_hide_password (new_history->text, 1);
+ irc_display_hide_password (new_history->text, 1);
if (((t_gui_buffer *)(buffer))->history)
((t_gui_buffer *)(buffer))->history->prev_history = new_history;
@@ -112,7 +112,7 @@ history_global_add (char *string)
{
new_history->text = strdup (string);
if (cfg_log_hide_nickserv_pwd)
- irc_hide_password (new_history->text, 1);
+ irc_display_hide_password (new_history->text, 1);
if (history_global)
history_global->prev_history = new_history;