summaryrefslogtreecommitdiff
path: root/src/resolve/resolved-resolv-conf.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2016-11-09 16:48:15 +0100
committerChristian Hesse <mail@eworm.de>2016-11-10 14:23:33 +0100
commit604c941520bf27ad301e8126cbfd159b15573f27 (patch)
tree234473fdc93ad44388fb75f160ebd7656c9230b0 /src/resolve/resolved-resolv-conf.c
parent843d5baf6aad6c53fc00ea8d95d83209a4f92de1 (diff)
downloadsystemd-604c941520bf27ad301e8126cbfd159b15573f27.tar.gz
resolved: use macro for private resolve.conf
Use the macro from header file to have a single definition of the path.
Diffstat (limited to 'src/resolve/resolved-resolv-conf.c')
-rw-r--r--src/resolve/resolved-resolv-conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c
index 801014caf5..13f08f8a6c 100644
--- a/src/resolve/resolved-resolv-conf.c
+++ b/src/resolve/resolved-resolv-conf.c
@@ -60,7 +60,7 @@ int manager_read_resolv_conf(Manager *m) {
return 0;
/* Is it symlinked to our own file? */
- if (stat("/run/systemd/resolve/resolv.conf", &own) >= 0 &&
+ if (stat(PRIVATE_RESOLV_CONF, &own) >= 0 &&
st.st_dev == own.st_dev &&
st.st_ino == own.st_ino)
return 0;