From: Richard M. Stallman Date: Wed, 15 Mar 1995 23:31:02 +0000 (+0000) Subject: Use BSD sockets whenever available, even if HAVE_SYSVIPC. X-Git-Tag: emacs-19.34~4828 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee6a193c4ca86a0066c47b65658ba33f643de03a;p=emacs.git Use BSD sockets whenever available, even if HAVE_SYSVIPC. (main): Use getcwd if not BSD. --- diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 2a48a5022d1..98fd8a24aa6 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -42,7 +42,7 @@ main (argc, argv) #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ -#if ! defined (HAVE_SYSVIPC) +#if defined (HAVE_SOCKETS) /* BSD code is very different from SYSV IPC code */ #include @@ -135,7 +135,11 @@ main (argc, argv) exit (1); } +#ifdef BSD cwd = getwd (string); +#else + cwd = getcwd (string, sizeof string); +#endif if (cwd == 0) { /* getwd puts message in STRING if it fails. */