*** ./example/rftp Fri May 3 16:01:49 1996 --- ../expect-5.28/./example/rftp Tue Dec 22 11:49:10 1998 *************** *** 309,315 **** set first_time 1 if $argc>1 { ! send_user "usage: rftp [host] exit } --- 309,315 ---- set first_time 1 if $argc>1 { ! send_user "usage: rftp [host]" exit } *** ./Makefile.in Mon Sep 21 18:02:16 1998 --- ../expect-5.28/./Makefile.in Wed Oct 28 13:32:07 1998 *************** *** 387,397 **** # but there's no way to write a rule that says shared/XYZ.o should # depend on XYZ.c in a different directory (except by writing the # rule out for each file, sigh). $(EXP_SHARED_LIB_FILE): $(OFILES) -rm -f $(EXP_SHARED_LIB_FILE) ! @TCL_SHLIB_LD@ -o $(EXP_SHARED_LIB_FILE) $(SHARED_OFILES) @EXP_LD_SEARCH_FLAGS@ @EXP_SHLIB_LD_LIBS@ ! .PHONY: install-info install info install-info: install: expect expect_installed ${X11_PROGS_INSTALLED} $(SCRIPTS) --- 387,400 ---- # but there's no way to write a rule that says shared/XYZ.o should # depend on XYZ.c in a different directory (except by writing the # rule out for each file, sigh). + EXP_LD_SEARCH_FLAGS = @EXP_LD_SEARCH_FLAGS@ $(EXP_SHARED_LIB_FILE): $(OFILES) -rm -f $(EXP_SHARED_LIB_FILE) ! @TCL_SHLIB_LD@ $(SHLIB_LDFLAGS) -o $(EXP_SHARED_LIB_FILE) $(SHARED_OFILES) $(EXP_LD_SEARCH_FLAGS) @EXP_SHLIB_LD_LIBS@ ! .PHONY: install-info install info scripts ! scripts: $(SCRIPTS) ! install-info: install: expect expect_installed ${X11_PROGS_INSTALLED} $(SCRIPTS) *** ./pty_termios.c Mon Mar 16 13:53:41 1998 --- ../expect-5.28/./pty_termios.c Mon Oct 26 15:44:50 1998 *************** *** 375,381 **** } else if (grantpt(master)) { static char buf[500]; exp_pty_error = buf; ! sprintf(exp_pty_error,"grantpt(%d) failed - likely reason is that your system administrator (in a rage of blind passion to rid the system of security holes) removed setuid from the utility used internally by grantpt to change pty permissions. Tell your system admin to reestablish setuid on the utility. Get the utility name by running Expect under truss or trace."); close(master); return(-1); } --- 375,381 ---- } else if (grantpt(master)) { static char buf[500]; exp_pty_error = buf; ! sprintf(exp_pty_error,"grantpt(%d) failed - likely reason is that your system administrator (in a rage of blind passion to rid the system of security holes) removed setuid from the utility used internally by grantpt to change pty permissions. Tell your system admin to reestablish setuid on the utility. Get the utility name by running Expect under truss or trace.", master); close(master); return(-1); }