aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-06 15:49:04 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-06 15:49:04 +0200
commit2d2778ca7e8b9eb2650cea6224e080a62fcc7224 (patch)
treeea15ca052f40ece16926eee1c65af0d6a07de21d /src/mds.c
parentadd strequals and startswith macros + add drop_privileges macro that drops the group before the user (diff)
downloadmds-2d2778ca7e8b9eb2650cea6224e080a62fcc7224.tar.gz
mds-2d2778ca7e8b9eb2650cea6224e080a62fcc7224.tar.bz2
mds-2d2778ca7e8b9eb2650cea6224e080a62fcc7224.tar.xz
add monotone macro
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/mds.c')
-rw-r--r--src/mds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mds.c b/src/mds.c
index df8fb31..8b2423a 100644
--- a/src/mds.c
+++ b/src/mds.c
@@ -297,7 +297,7 @@ int spawn_and_respawn_server(int fd)
if (pid)
{
/* Get the current time. (Start of child process.) */
- time_error = (clock_gettime(CLOCK_MONOTONIC, &time_start) < 0);
+ time_error = (monotone(&time_start) < 0);
if (time_error)
perror(*argv);
@@ -313,7 +313,7 @@ int spawn_and_respawn_server(int fd)
break;
/* Get the current time. (End of child process.) */
- time_error |= (clock_gettime(CLOCK_MONOTONIC, &time_end) < 0);
+ time_error |= (monotone(&time_end) < 0);
/* Do not respawn if we could not read the time. */
if (time_error)