- (djm) Replace "/bin/sh" with _PATH_BSHELL
 - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
diff --git a/ChangeLog b/ChangeLog
index 06ed24d..ad858a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 20000701
  - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
  - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
+ - (djm) Replace "/bin/sh" with _PATH_BSHELL
+ - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
 
 20000628
  - (djm) Fixes to lastlog code for Irix
diff --git a/session.c b/session.c
index ca4a994..2995677 100644
--- a/session.c
+++ b/session.c
@@ -1057,9 +1057,9 @@
 	if (!options.use_login) {
 		if (stat(SSH_USER_RC, &st) >= 0) {
 			if (debug_flag)
-				fprintf(stderr, "Running /bin/sh %s\n", SSH_USER_RC);
+				fprintf(stderr, "Running "_PATH_BSHELL" %s\n", SSH_USER_RC);
 
-			f = popen("/bin/sh " SSH_USER_RC, "w");
+			f = popen(_PATH_BSHELL " " SSH_USER_RC, "w");
 			if (f) {
 				if (auth_proto != NULL && auth_data != NULL)
 					fprintf(f, "%s %s\n", auth_proto, auth_data);
@@ -1068,9 +1068,9 @@
 				fprintf(stderr, "Could not run %s\n", SSH_USER_RC);
 		} else if (stat(SSH_SYSTEM_RC, &st) >= 0) {
 			if (debug_flag)
-				fprintf(stderr, "Running /bin/sh %s\n", SSH_SYSTEM_RC);
+				fprintf(stderr, "Running "_PATH_BSHELL" %s\n", SSH_SYSTEM_RC);
 
-			f = popen("/bin/sh " SSH_SYSTEM_RC, "w");
+			f = popen(_PATH_BSHELL " " SSH_SYSTEM_RC, "w");
 			if (f) {
 				if (auth_proto != NULL && auth_data != NULL)
 					fprintf(f, "%s %s\n", auth_proto, auth_data);
@@ -1160,7 +1160,7 @@
 		} else {
 			/* Launch login(1). */
 
-			execl("/usr/bin/login", "login", "-h", get_remote_ipaddr(),
+			execl(LOGIN_PROGRAM, "login", "-h", get_remote_ipaddr(),
 			      "-p", "-f", "--", pw->pw_name, NULL);
 
 			/* Login couldn't be executed, die. */
diff --git a/sshconnect.c b/sshconnect.c
index 835ca7b..79b6856 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -108,15 +108,15 @@
 
 		/* Stderr is left as it is so that error messages get
 		   printed on the user's terminal. */
-		argv[0] = "/bin/sh";
+		argv[0] = _PATH_BSHELL;
 		argv[1] = "-c";
 		argv[2] = command_string;
 		argv[3] = NULL;
 
 		/* Execute the proxy command.  Note that we gave up any
 		   extra privileges above. */
-		execv("/bin/sh", argv);
-		perror("/bin/sh");
+		execv(_PATH_BSHELL, argv);
+		perror(_PATH_BSHELL);
 		exit(1);
 	}
 	/* Parent. */