diff options
author | June McEnroe <june@causal.agency> | 2019-10-26 04:57:33 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-26 04:57:33 -0400 |
commit | 648c5cc21484a4f0d9846f04bc47c1e35fa18234 (patch) | |
tree | 02847d4c25ec01c65ce3db9b0ab2cc5e61dbb568 /bounce.c | |
parent | Set AWAY when no clients are connected (diff) | |
download | pounce-648c5cc21484a4f0d9846f04bc47c1e35fa18234.tar.gz pounce-648c5cc21484a4f0d9846f04bc47c1e35fa18234.zip |
Track channel topics
Diffstat (limited to '')
-rw-r--r-- | bounce.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bounce.c b/bounce.c index 648a17b..8d9a4b5 100644 --- a/bounce.c +++ b/bounce.c @@ -94,7 +94,7 @@ int main(int argc, char *argv[]) { const char *away = "pounced :3"; int opt; - while (0 < (opt = getopt(argc, argv, "A:C:H:K:NTP:W:a:h:j:n:p:r:u:vw:"))) { + while (0 < (opt = getopt(argc, argv, "A:C:H:K:NP:W:a:h:j:n:p:r:u:vw:"))) { switch (opt) { break; case 'A': away = optarg; break; case 'C': strlcpy(certPath, optarg, sizeof(certPath)); @@ -102,7 +102,6 @@ int main(int argc, char *argv[]) { break; case 'K': strlcpy(privPath, optarg, sizeof(privPath)); break; case 'N': stateJoinNames = true; break; case 'P': localPort = optarg; - break; case 'T': stateJoinTopic = true; break; case 'W': clientPass = sensitive(optarg); break; case 'a': auth = sensitive(optarg); break; case 'h': host = optarg; |