From 525a4c43284dbb325e6c628ba26065f6ca23e312 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sun, 25 Aug 2019 13:54:01 +0200 Subject: Drop #ifdef HAVE_GETCWD, there never was a formal configure check. Assume that getcwd() is present, it is required by the Single Unix Specivication V2 (1997). Previously, fetchmail implicitly relied on AM_HAVE_GETTEXT() to check for getcwd(). --- daemon.c | 2 -- fetchmail.c | 4 ---- 2 files changed, 6 deletions(-) diff --git a/daemon.c b/daemon.c index 5ae73ed6..58dee539 100644 --- a/daemon.c +++ b/daemon.c @@ -242,10 +242,8 @@ nottyDetach: return(PS_IOERR); } -#ifdef HAVE_GETCWD /* move to root directory, so we don't prevent filesystem unmounts */ chdir("/"); -#endif /* set our umask to something reasonable (we hope) */ #if defined(DEF_UMASK) diff --git a/fetchmail.c b/fetchmail.c index 54526821..80993ccb 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -217,13 +217,11 @@ int main(int argc, char **argv) */ fm_lock_dispose(); -#ifdef HAVE_GETCWD /* save the current directory */ if (getcwd (currentwd, sizeof (currentwd)) == NULL) { report(stderr, GT_("could not get current working directory\n")); currentwd[0] = 0; } -#endif { int i; @@ -701,11 +699,9 @@ int main(int argc, char **argv) { report(stdout, GT_("restarting fetchmail (%s changed)\n"), rcfile); -#ifdef HAVE_GETCWD /* restore the startup directory */ if (!currentwd[0] || chdir (currentwd) == -1) report(stderr, GT_("attempt to re-exec may fail as directory has not been restored\n")); -#endif /* * Matthias Andree: Isn't this prone to introduction of -- cgit v1.2.3