diff options
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chat.c b/chat.c index fd1d33e..318a379 100644 --- a/chat.c +++ b/chat.c @@ -65,6 +65,7 @@ enum Color idColors[IDCap] = { size_t idNext = Network + 1; +struct Network network; struct Self self = { .color = Default }; static const char *save; @@ -187,10 +188,10 @@ int main(int argc, char *argv[]) { if (!user) user = nick; if (!real) real = nick; + set(&network.name, host); + set(&network.chanTypes, "#&"); + set(&network.prefixes, "@+"); set(&self.nick, "*"); - set(&self.network, host); - set(&self.chanTypes, "#&"); - set(&self.prefixes, "@+"); commandComplete(); FILE *certFile = NULL; |