about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-06-11 21:22:03 -0400
committerJune McEnroe <june@causal.agency>2021-06-11 21:22:03 -0400
commit161c1ad680e3a76f61c48793e349f0df9ed81e36 (patch)
tree0bc54f287a9f47cf32ee1454cbcd28c6496e4b7d
parentExclusively lock save file (diff)
downloadcatgirl-161c1ad680e3a76f61c48793e349f0df9ed81e36.tar.gz
catgirl-161c1ad680e3a76f61c48793e349f0df9ed81e36.zip
Fix unknown file signature error
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 2beba88..1b21cc5 100644
--- a/ui.c
+++ b/ui.c
@@ -1119,7 +1119,7 @@ static size_t signatureVersion(time_t signature) {
 	for (size_t i = 0; i < ARRAY_LEN(Signatures); ++i) {
 		if (signature == Signatures[i]) return i;
 	}
-	err(EX_DATAERR, "unknown file signature %jX", (uintmax_t)signature);
+	errx(EX_DATAERR, "unknown file signature %jX", (uintmax_t)signature);
 }
 
 static int writeTime(FILE *file, time_t time) {
oe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroecatgirl/commit/chat.c?h=enroll&id=6ccaf872fc5a981b8f7b04ea3990d6e6a85ff4fe&follow=1'>Use more octal char literalsJune McEnroe I might be coming around to octal. 2018-08-03Send a WHO in response to NAMES to get usernamesJune McEnroe Other than this slight hack, I think coloring by username rather than nick is a much better idea. 2018-08-03Colorize nicks and channelsJune McEnroe 2018-08-03Add support for mIRC colorsJune McEnroe 2018-08-03Handle bold, italic, underlineJune McEnroe 2018-08-03Add prift function for "prefix shift"June McEnroe Forgive me. 2018-08-03Link with -lcurseswJune McEnroe 2018-08-02Use libtls "compat" ciphersJune McEnroe irc.mozilla.org, using GnuTLS, doesn't support *any* of the "secure" ciphers! 2018-08-02Add UI and handle some kinds of server messagesJune McEnroe Seems like handling input is going to be the worst thing ever. 2018-08-02Add chroot.tar targetJune McEnroe