summaryrefslogtreecommitdiffstats
path: root/src/dhcpcd.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2020-10-03 17:17:45 +0100
committerRoy Marples <roy@marples.name>2020-10-03 17:17:45 +0100
commit3f8b1832bf65379ee25c3d5c4f53438807c35e5f (patch)
tree23bf2d03f093b4f7ffe8c89f421e3d1a688b557b /src/dhcpcd.c
parent984496259fe1b2fb7fd04d7f2c348ac1a2c7985f (diff)
downloaddhcpcd-3f8b1832bf65379ee25c3d5c4f53438807c35e5f.tar.xz
Don't log backticks.
Diffstat (limited to 'src/dhcpcd.c')
-rw-r--r--src/dhcpcd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dhcpcd.c b/src/dhcpcd.c
index 55bbff0d..604a08ca 100644
--- a/src/dhcpcd.c
+++ b/src/dhcpcd.c
@@ -698,7 +698,7 @@ dhcpcd_reportssid(struct interface *ifp)
return;
}
- loginfox("%s: connected to Access Point `%s'", ifp->name, pssid);
+ loginfox("%s: connected to Access Point: %s", ifp->name, pssid);
}
void
@@ -2066,7 +2066,7 @@ printpidfile:
}
if (chdir("/") == -1)
- logerr("%s: chdir `/'", __func__);
+ logerr("%s: chdir: /", __func__);
/* Freeing allocated addresses from dumping leases can trigger
* eloop removals as well, so init here. */
@@ -2223,9 +2223,9 @@ printpidfile:
if (!(ctx.options & DHCPCD_TEST)) {
/* Ensure we have the needed directories */
if (mkdir(DBDIR, 0750) == -1 && errno != EEXIST)
- logerr("%s: mkdir `%s'", __func__, DBDIR);
+ logerr("%s: mkdir: %s", __func__, DBDIR);
if (mkdir(RUNDIR, 0755) == -1 && errno != EEXIST)
- logerr("%s: mkdir `%s'", __func__, RUNDIR);
+ logerr("%s: mkdir: %s", __func__, RUNDIR);
if ((pid = pidfile_lock(ctx.pidfile)) != 0) {
if (pid == -1)
logerr("%s: pidfile_lock: %s",