diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-18 20:32:22 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-18 20:32:22 +0000 |
commit | c2a1971cc3001793454c3175b2134b54375ddd82 (patch) | |
tree | 2de9639859b1bde4d7a227923d83a561da53f838 /src/perl/common/Log.xs | |
parent | b0178d72487ee4d5838b53f489d155154a0a7f64 (diff) | |
download | irssi-c2a1971cc3001793454c3175b2134b54375ddd82.zip |
updates for latest changes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1240 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/common/Log.xs')
-rw-r--r-- | src/perl/common/Log.xs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/perl/common/Log.xs b/src/perl/common/Log.xs index 3418555b..43ebad3c 100644 --- a/src/perl/common/Log.xs +++ b/src/perl/common/Log.xs @@ -25,11 +25,11 @@ MODULE = Irssi PACKAGE = Irssi::Log PREFIX = log_ #******************************* void -log_item_add(log, type, name, server) +log_item_add(log, type, name, servertag) Irssi::Log log int type char *name - Irssi::Server server + char *servertag void log_item_destroy(log, item) @@ -37,11 +37,11 @@ log_item_destroy(log, item) Irssi::Logitem item Irssi::Logitem -log_item_find(log, type, item, server) +log_item_find(log, type, item, servertag) Irssi::Log log int type char *item - Irssi::Server server + char *servertag void log_update(log) |