aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2024-08-03 09:09:35 +0000
committerOmar Polo <op@omarpolo.com>2024-08-03 09:09:35 +0000
commit6171e74111f93e1948672f9bfb3ee38d447fb2d1 (patch)
treea3e86822246a0ed03eb188ec37a9646fead0f9fb
parent5adfab93e4e3d81d2b47d3c2575942742e94b546 (diff)
fmt
-rw-r--r--gmid.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gmid.c b/gmid.c
index 23cedcb..91d796c 100644
--- a/gmid.c
+++ b/gmid.c
@@ -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