Compare commits

...

2 Commits

Author SHA1 Message Date
a665c369e3
change default server 2022-09-24 14:27:42 +03:00
f7b307bb34
update (c) 2022-09-24 13:49:53 +03:00
5 changed files with 26 additions and 4 deletions

21
.editorconfig Normal file
View File

@ -0,0 +1,21 @@
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{*.c,*.h}]
indent_style = tab
indent_size = 4
[*.md]
trim_trailing_whitespace = false
indent_style = tab
[Makefile]
indent_style = tab
indent_size = 4

View File

@ -1,5 +1,6 @@
MIT/X Consortium License
© 2022 Alexander Popov <iiiypuk@fastmail.fm>
© 2005-2017 Anselm R Garbe <anselm@garbe.us>
© 2008-2009 Jeroen Schot <schot@a-eskwadraat.nl>
© 2007-2009 Kris Maglione <maglione.k@gmail.com>

View File

@ -20,4 +20,4 @@ Afterwards enter the following command to build and install sic
Running sic
-----------
Simply invoke the 'sic' command with the required arguments.
Simply invoke the `sic` command with the required arguments.

View File

@ -1,5 +1,5 @@
/* Host used when "-h" is not given */
#define DEFAULT_HOST "irc.oftc.net"
#define DEFAULT_HOST "iiiypuk.me"
/* Port used when "-p" is not given */
#define DEFAULT_PORT "6667"

4
sic.c
View File

@ -1,4 +1,4 @@
/* See LICENSE file for license details. */
/* See LICENSE file for license details. */
#include <sys/select.h>
#include <ctype.h>
@ -167,7 +167,7 @@ main(int argc, char *argv[]) {
password = EARGF(usage());
break;
case 'v':
eprint("sic-"VERSION", © 2005-2014 Kris Maglione, Anselm R. Garbe, Nico Golde\n");
eprint("sic-"VERSION", © 2005-2017 Anselm R Garbe, Jeroen Schot, Kris Maglione, Nico Golde\n");
break;
default:
usage();