diff options
author | Diogo Sousa <diogogsousa@gmail.com> | 2013-07-14 11:29:24 -0700 |
---|---|---|
committer | Diogo Sousa <diogogsousa@gmail.com> | 2013-07-14 11:29:24 -0700 |
commit | 6c8d9c2194d220ba26b8be09e8a6bffa4cf99b7f (patch) | |
tree | 67421013c2f1fcdbeeb4db8142606cbf35c957ff /src/common/dcc.c | |
parent | 62d52d55b235479a83baa3fa4749ea33e34cbea4 (diff) | |
parent | 35989660692d5550808eeec066d52043431484cc (diff) |
Merge pull request #675 from orium/server-time-plugins
Server time plugins
Diffstat (limited to 'src/common/dcc.c')
-rw-r--r-- | src/common/dcc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/dcc.c b/src/common/dcc.c index c0527510..1137c444 100644 --- a/src/common/dcc.c +++ b/src/common/dcc.c @@ -548,7 +548,8 @@ dcc_chat_line (struct DCC *dcc, char *line) for (i = 5; i < PDIWORDS; i++) word[i] = "\000"; - ret = plugin_emit_print (sess, word); + ret = plugin_emit_print (sess, word) + + plugin_emit_print_attrs (sess, word, 0); /* did the plugin close it? */ if (!g_slist_find (dcc_list, dcc)) |