- (stevesk) sshpty.c: return 0 on error in cray pty code;
   ok wendyp@cray.com
diff --git a/sshpty.c b/sshpty.c
index 31abd69..f88658b 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -186,6 +186,7 @@
 		if (*ttyfd < 0) {
 			error("%.100s: %.100s", namebuf, strerror(errno));
 			close(*ptyfd);
+			return 0;
 		}
 		return 1;
 	}