From: Richard M. Stallman Date: Mon, 2 Dec 2002 16:14:35 +0000 (+0000) Subject: (main): Test HAVE_GETCWD rather than BSD_SYSTEM. X-Git-Tag: ttn-vms-21-2-B4~12207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38732dbaa3d35a399ada5d60153ce789217977b6;p=emacs.git (main): Test HAVE_GETCWD rather than BSD_SYSTEM. --- 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);