diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-06 08:50:54 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-06 08:50:54 +0000 |
commit | 281a8852b3a2d76c10d2fb6476a706746d05509b (patch) | |
tree | a9c5a73adf8e85597f0eb87d1865e28249c2b8a1 | |
parent | 3dd89fbb44f7f61b8c89db12f4469ca49c17bc68 (diff) |
rename log.[ch] to logger.[ch]
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | fcgi.c | 2 | ||||
-rw-r--r-- | ge.c | 2 | ||||
-rw-r--r-- | gmid.c | 2 | ||||
-rw-r--r-- | logger.c (renamed from log.c) | 2 | ||||
-rw-r--r-- | logger.h (renamed from log.h) | 0 | ||||
-rw-r--r-- | mime.c | 2 | ||||
-rw-r--r-- | proxy.c | 2 | ||||
-rw-r--r-- | sandbox.c | 2 | ||||
-rw-r--r-- | server.c | 2 | ||||
-rw-r--r-- | utils.c | 2 |
11 files changed, 13 insertions, 13 deletions
@@ -23,7 +23,7 @@ GMID_SRCS = config.c \ fcgi.c \ gmid.c \ iri.c \ - log.c \ + logger.c \ mime.c \ proxy.c \ puny.c \ @@ -40,7 +40,7 @@ GE_SRCS = config.c \ fcgi.c \ ge.c \ iri.c \ - log.c \ + logger.c \ mime.c \ proxy.c \ puny.c \ @@ -58,7 +58,7 @@ GG_SRCS = gg.c \ GG_OBJS = ${GG_SRCS:.c=.o} ${COBJS} SRCS = gmid.h \ - log.h \ + logger.h \ parse.y \ ${GMID_SRCS} \ ${GE_SRCS} \ @@ -158,7 +158,7 @@ DISTFILES = .cirrus.yml \ gmid.conf.5 \ gmid.h \ iri.c \ - log.c \ + logger.c \ mime.c \ parse.y \ proxy.c \ @@ -20,7 +20,7 @@ #include <errno.h> #include <string.h> -#include "log.h" +#include "logger.h" /* * Sometimes it can be useful to inspect the fastcgi traffic as @@ -28,7 +28,7 @@ #include <string.h> #include <unistd.h> -#include "log.h" +#include "logger.h" struct imsgbuf ibuf, logibuf; struct conf conf; @@ -29,7 +29,7 @@ #include <signal.h> #include <string.h> -#include "log.h" +#include "logger.h" static const char *opts = "c:D:fhnP:Vv"; @@ -30,7 +30,7 @@ #include <syslog.h> #include <time.h> -#include "log.h" +#include "logger.h" static struct event imsgev; @@ -20,7 +20,7 @@ #include <stdlib.h> #include <string.h> -#include "log.h" +#include "logger.h" void init_mime(struct mime *mime) @@ -20,7 +20,7 @@ #include <errno.h> #include <string.h> -#include "log.h" +#include "logger.h" #define MIN(a, b) ((a) < (b) ? (a) : (b)) @@ -15,7 +15,7 @@ */ #include "gmid.h" -#include "log.h" +#include "logger.h" #if defined(__OpenBSD__) @@ -28,7 +28,7 @@ #include <limits.h> #include <string.h> -#include "log.h" +#include "logger.h" #define MIN(a, b) ((a) < (b) ? (a) : (b)) @@ -24,7 +24,7 @@ #include <openssl/x509_vfy.h> #include <openssl/x509v3.h> -#include "log.h" +#include "logger.h" int starts_with(const char *str, const char *prefix) |