diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-09-17 02:37:17 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-09-17 02:37:17 +0000 |
commit | e397a0172fe822eb80080184f5961a26916c9626 (patch) | |
tree | cf50a152e1a9a811b5ccbb14e266fb677f2637db /lib-src/emacsclient.c | |
parent | 7c5a1541f34c8eec8f5e1e7db66819cb6a23496a (diff) | |
download | emacs-e397a0172fe822eb80080184f5961a26916c9626.tar.gz |
Replaced all BSD with BSD_SYSTEM.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index b74cc26d162..2e99e9d34ad 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -259,7 +259,7 @@ main (argc, argv) exit (1); } -#ifdef BSD +#ifdef BSD_SYSTEM cwd = getwd (string); #else cwd = getcwd (string, sizeof string); @@ -374,7 +374,7 @@ main (argc, argv) } /* Determine working dir, so we can prefix it to all the arguments. */ -#ifdef BSD +#ifdef BSD_SYSTEM temp = getwd (gwdirb); #else temp = getcwd (gwdirb, sizeof gwdirb); |