mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
Add -noautosendcmd to /SERVER and /CONNECT.
Passing this option will force Irssi to not execute the content of the autosendcmd chatnet-setting upon connect. Fixes: #738 git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5209 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
518b822db4
commit
796134ffbd
7 changed files with 14 additions and 5 deletions
|
|
@ -188,7 +188,8 @@ server_connect_copy_skeleton(SERVER_CONNECT_REC *src, int connect_info)
|
|||
|
||||
dest->channels = g_strdup(src->channels);
|
||||
dest->away_reason = g_strdup(src->away_reason);
|
||||
dest->no_autojoin_channels = src->no_autojoin_channels;
|
||||
dest->no_autojoin_channels = src->no_autojoin_channels;
|
||||
dest->no_autosendcmd = src->no_autosendcmd;
|
||||
|
||||
dest->use_ssl = src->use_ssl;
|
||||
dest->ssl_cert = g_strdup(src->ssl_cert);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue