Compare commits

..

No commits in common. "a665c369e39f550e812c3396c529dd330be4ffa3" and "058547e707e961e0cb7f8af4877f1b92f4c6d888" have entirely different histories.

5 changed files with 4 additions and 26 deletions

View File

@ -1,21 +0,0 @@
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,6 +1,5 @@
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 "iiiypuk.me"
#define DEFAULT_HOST "irc.oftc.net"
/* 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-2017 Anselm R Garbe, Jeroen Schot, Kris Maglione, Nico Golde\n");
eprint("sic-"VERSION", © 2005-2014 Kris Maglione, Anselm R. Garbe, Nico Golde\n");
break;
default:
usage();