diff options
author | Omar Polo <op@omarpolo.com> | 2024-08-03 09:09:35 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-08-03 09:09:35 +0000 |
commit | 6171e74111f93e1948672f9bfb3ee38d447fb2d1 (patch) | |
tree | a3e86822246a0ed03eb188ec37a9646fead0f9fb | |
parent | 5adfab93e4e3d81d2b47d3c2575942742e94b546 (diff) |
fmt
-rw-r--r-- | gmid.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * Copyright (c) 2020, 2021, 2022, 2023 Omar Polo <op@omarpolo.com> + * Copyright (c) 2020-2024 Omar Polo <op@omarpolo.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -111,8 +111,10 @@ log_request(struct client *c, int code, const char *meta) strlcpy(b, c->iri.schema, sizeof(b)); strlcat(b, "://", sizeof(b)); - /* log the decoded host name, but if it was invalid - * use the raw one. */ + /* + * log the decoded host name, but if it was invalid + * use the raw one. + */ if (*c->domain != '\0') strlcat(b, c->domain, sizeof(b)); else |