diff options
author | June McEnroe <june@causal.agency> | 2020-02-06 02:21:04 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-06 02:21:04 -0500 |
commit | 8b3bf897c2b7a14ff6a4c096b9969eaeb695a9e0 (patch) | |
tree | ab4bfc7820e081da7ca18a1605d332d7185aed6e /chat.h | |
parent | Handle TOPIC and replies (diff) | |
download | catgirl-8b3bf897c2b7a14ff6a4c096b9969eaeb695a9e0.tar.gz catgirl-8b3bf897c2b7a14ff6a4c096b9969eaeb695a9e0.zip |
Search for cert and priv in config dirs
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.h b/chat.h index 57d4ba6..112530d 100644 --- a/chat.h +++ b/chat.h @@ -105,7 +105,7 @@ struct Message { char *params[ParamCap]; }; -void ircConfig(bool insecure, const char *cert, const char *priv); +void ircConfig(bool insecure, FILE *cert, FILE *priv); int ircConnect(const char *host, const char *port); void ircRecv(void); void ircSend(const char *ptr, size_t len); |