diff options
author | June McEnroe <june@causal.agency> | 2022-03-29 18:00:29 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-03-29 18:00:29 -0400 |
commit | 86a34c39e41c3d179214f267b7a1ec0259a1c609 (patch) | |
tree | 012904439c029937da11b972fe79d9b371b6f810 /bounce.c | |
parent | Handle CAP REQ causal.agency/passive after registration (diff) | |
download | pounce-86a34c39e41c3d179214f267b7a1ec0259a1c609.tar.gz pounce-86a34c39e41c3d179214f267b7a1ec0259a1c609.zip |
Replace ORIGIN #define with clientOrigin variable
Diffstat (limited to '')
-rw-r--r-- | bounce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bounce.c b/bounce.c index e9fcd0b..de455d4 100644 --- a/bounce.c +++ b/bounce.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2019 C. McEnroe <june@causal.agency> +/* Copyright (C) 2019 June McEnroe <june@causal.agency> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -413,7 +413,7 @@ int main(int argc, char *argv[]) { if (revents & POLLOUT) { clientConsume(client); if (now - client->idle >= IdleTime) { - clientFormat(client, "PING :%s\r\n", ORIGIN); + clientFormat(client, "PING :%s\r\n", clientOrigin); } } if (revents & POLLIN) clientRecv(client); |