From 38732dbaa3d35a399ada5d60153ce789217977b6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 2 Dec 2002 16:14:35 +0000 Subject: [PATCH] (main): Test HAVE_GETCWD rather than BSD_SYSTEM. --- lib-src/emacsclient.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 007473929a3..81245bcd66a 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -418,19 +418,19 @@ main (argc, argv) fail (argc, argv); } -#ifdef BSD_SYSTEM - cwd = getwd (string); -#else +#ifdef HAVE_GETCWD cwd = getcwd (string, sizeof string); +#else + cwd = getwd (string); #endif if (cwd == 0) { /* getwd puts message in STRING if it fails. */ fprintf (stderr, "%s: %s (%s)\n", argv[0], -#ifdef BSD_SYSTEM - string, -#else +#ifdef HAVE_GETCWD "Cannot get current working directory", +#else + string, #endif strerror (errno)); fail (argc, argv); -- 2.39.2