changeset 756:1e07981f7511

2006-6-22 Brian Masney <masneyb@gftp.org> * lib/pty.c (_gftp_ptys_open) - fixes for setting up the slave pty under HPUX (closes #303066)
author masneyb
date Fri, 23 Jun 2006 01:35:19 +0000
parents 6d19d4a8adee
children d4207e5d2aa3
files ChangeLog lib/pty.c
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Jun 23 01:31:05 2006 +0000
+++ b/ChangeLog	Fri Jun 23 01:35:19 2006 +0000
@@ -1,4 +1,7 @@
 2006-6-22 Brian Masney <masneyb@gftp.org>
+	* lib/pty.c (_gftp_ptys_open) - fixes for setting up the slave pty
+	under HPUX (closes #303066)
+
 	* src/gtk/gtkui.c (gftpui_prompt_username) - don't create the widget as
 	a password widget (closes #313746)
 
@@ -3378,7 +3381,7 @@
 
 	* cvsclean - added this script
 
-	* *.[ch] - added $Id: ChangeLog,v 1.431 2006/06/23 01:31:04 masneyb Exp $ tags
+	* *.[ch] - added $Id: ChangeLog,v 1.432 2006/06/23 01:35:18 masneyb Exp $ tags
 
 	* debian/* - updated files from Debian maintainer
 
--- a/lib/pty.c	Fri Jun 23 01:31:05 2006 +0000
+++ b/lib/pty.c	Fri Jun 23 01:35:19 2006 +0000
@@ -121,7 +121,7 @@
       return (-1);
     }
 
-#ifdef SYSV
+#if defined(SYSV) || defined (hpux)
   /* I intentionally ignore these errors */
   ioctl (new_fds, I_PUSH, "ptem");
   ioctl (new_fds, I_PUSH, "ldterm");