2002-05-26  Pontus Skld  <pont@soua.net>

	* rl.c (lsftp_rl_remotefile_generator):
	Bugfix. lsftp_unqualify_path returns a pointer into the given
	string. We can't free that.

	* commands.c (com_cd): Glob absolute paths only.
	(com_rm): Dito.
	(com_get): Dito.
	(com_mv): Dito.

2002-05-25  Pontus Skld  <pont@soua.net>

	* rl.c (lsftp_rl_remotefile_generator): (Hopefully) fixed
	completion to behave correctly. Always glob on absolute path and
	make them relative if neccessary when returning them.

	* sftp_bind.c (lsftp_path_is_absolute): New function.

	* sftp_bind.h: Declaration.

2002-05-23  Pontus Skld  <pont@soua.net>

	* sftp_bind.c (lsftp_do_ls): Bail out if globbing failed.

2002-05-15  Pontus Skld  <pont@soua.net>

	* commands.c (get_file_or_folder): Removed debug message.

	* dc.c (lsftp_dc_r_startglob): Remove lsftp_unqualify_path calls,
	I wonder why I thought they should be there from the beginning.

	* commands.c (com_longhelp): New function (almost identical to the
	old help function, just ignore the visible bit). Cosmetic fix at
	the same time (an empty line inserted before the help for a
	command).
	(com_help): Rewrote to just display all available commands in
	short form (if called without arguments). If arguments are given,
	leave it to longhelp.

	* commands.h: New function com_longhelp.

	* commands.c: Added longhelp entry to available commands, changed
	text for help.

2002-05-06  Niels Mller  <niels@s3.kth.se>

	* configure.ac (CFLAGS): Don't enable -Waggregate-return.

2002-05-05  Niels Mller  <nisse@lysator.liu.se>

	* acconfig.h: Deleted file.

	* configure.ac: Pass no arguments to AM_INIT_AUTOMAKE. Use the
	three-argument form of AC_DEFINE.

2002-05-05  Niels Mller  <nisse@cuckoo.hack.org>

	* configure.ac: Update for automake-1.6.

2002-04-02  Pontus Skld  <pont@soua.net>

	* sftp-server.c (sftp_process_readdir): Include up to
	MAX_DIRENTS_PER_REQUEST files in response to a single
	SSH_FXP_READDIR. Should (and seems to) speed up directory 
	traversal dramatically.
	
2002-03-27  Niels Mller  <nisse@cuckoo.hack.org>

	* werror.c (_fatal): New function.

	* sftp.h (SFTP_MAX_PACKET): New constant.

	* sftp-test-client.c: Replaced FATAL with calls of fatal.
	* sftp_bind.c: Likewise.

	* sftp-server.c: Define the werror_program_name constant. Replaced
	FATAL with calls of fatal.

	* buffer.c: Moved the definitions of struct sftp_input and struct
	sftp_output, and selected functions, to separate files io_input
	and io_output. The code left in this file does not depend on the
	details of those structs.

	* Makefile.am (shared_src): New make variable listing
	source files used by all clients and servers. Added io_input and
	io_output. 

	* io.h (sftp_make_output): New file with declarations that doesn't
	fit in buffer.h, in particular the constructors for sftp_input and
	sftp_output. 

	* lsftp.c: Include werror.h, and define
	werror_program_name. 

	* io_output.c: New file, with all the functions that need to knwo
	about the internals of struct sftp_output.
	* io_input.c: New file, with all the functions that need to knwo
	about the internals of struct sftp_input.

	* misc_fun.c (FATAL): Deleted function, use the fatal
	function in werror.c instead.

2002-03-26  Pontus Skld  <pont@soua.net>

	* sftp-server.c (MAX_DIRENTS_PER_REQUEST): New constant, the
	maximum number of directory entries to include in response to one
	SSH_FXP_READDIR.

	* buffer.c (sftp_read_packet): Cosmetic fixes and a bugfix (if
	sftp_get_data returns -1, it's not ok).

	* gnu_stuff.c (help_option): Added an help text. It needs work but
	is (hopefully) better than nothing.

2002-03-25  Pontus Skld  <pont@soua.net>

	* buffer.c (sftp_read_packet): Loop to read data.
	(sftp_get_data): Likewise.
	(sftp_write_packet): Loop to write data.

	* sftp_c.c (sftp_ls_main): Check return values from
	sftp_get_string.

	* sftp-test-client.c (fork_server): Use fds, not FILE*s.

	* sftp-server.c (sftp_init): Use fds, not FILE*s.
	(main): Use fds STDIN_FILENO and STDOUT_FILENO instead of FILE*s
	stdin and stdout.

	* buffer.c: We need unistd.h to have read and write defined. And
	we want errno to, so we need errno.h
	(sftp_make_input): Use fd, not FILE*
	(sftp_make_output): Likewise.	

	* sftp_bind.c (lsftp_close_connection): Use fd_to_transport and
	fd_from_transport instead of to_transport and from_transport.

	* configure.ac (CPPFLAGS): use AC_DEFINE_UNQUOTED instead of
	putting options for before and after in CPPFLAGS. Solves problem
	with spaces in before- and after-opts.
 
	* sftp_bind.c (lsftp_open_connection): Dont't use FILE* but fds
	directly.
	(lsftp_handshake): Use read instead of fread, and pass fds to
	sftp_make_input and sftp_make_output.

	* buffer.c (struct sftp_input): Use fd instead of FILE*.
	(struct sftp_output): Likewise.
	(sftp_get_data): Use read instead of fread.
	(sftp_read_packet): Likewise.
	(sftp_write_packet): Use write instead of fwrite.

	* buffer.h: Changed prototype of sftp_make_input and
	sftp_make_output to use fds instead of files.

2002-03-24  Pontus Skld  <pont@soua.net>

	* configure.ac: Added --no-pty to default options if we're using
	lsh(g).

	* commands.c (com_quit): Only call com_close if connected.

2002-03-23  Pontus Skld  <pont@soua.net>

	* configure.ac: Removed -G from default after options.

2002-03-23  Pontus Skld  <pont@it.uu.se>

	* configure.ac (termcap): Added check for libtermcap. This should
	help systems with a dynamically linked libreadline that depends on
	libtermcap.

2002-03-21  Pontus Skld  <pont@soua.net>

	* configure.ac: Almost completely rewrote the checks for readline
	and history, now actually uses the results of the library checks.

	* rl.c: Use WITH_READLINE and WITH_HISTORY instead of header
	existence.
	
	* rl.h: Use <readline.h> and <history.h> if available.

2002-03-19  Pontus Skld  <pont@it.uu.se>

	* Makefile.am: sftp-server should go to sbin (or should it go to
	libexec? Not bin anyway).

2002-03-18  Niels Mller  <nisse@lysator.liu.se>

	* commands.c (com_umask): Use unsigned char.
	(com_chown): Likewise.
	(com_chgrp): Likewise.
	(handle_command): Unsigned char argument.

2002-03-14  Pontus  <pont@it.uu.se>

	* configure.ac: Changed version number from 1.0 to 1.0-pre to make
	sure noone thinks "to highly" of the code. Also removed debug code
	that shouldn't have been checked in.

2002-02-27  Niels Mller  <nisse@cuckoo.hack.org>

	* gnu_stuff.c: Include stdlib.h and string.h.

2002-02-25  Pontus  <pont@it.uu.se>

	* lsftp.c (main): Readded support for GNU-thingies (was lost
	somehow some time ago).

	* gnu_stuff.c (lsftp_welcome): Included Niels in welcome message.
	(version_option): dito.
	(do_gnu_stuff): New function to check for GNU-thingies.
	
	* configure.ac: Added ugly fix to detect if we're part of the main
	lsh distribution. If we are, assume $bindir/lshg works
	satisfactionary.
	
	* sftp_bind.c (lsftp_install_lsftp_cb): Return a pointer to the
	callback instead.
	(lsftp_do_rm): Adopted for new use of lsftp_install_lsftp_cb.
	(lsftp_do_get): dito.
	(lsftp_do_ls): dito.
	(lsftp_do_chmod): dito.
	(lsftp_do_mv): dito.
	(lsftp_do_realpath): dito.
	(string_comparer): Changed type for arguments from char** to const
	void*.

	* sftp_bind.h: Changed return type of lsftp_install_lsftp_cb from
	int to struct lsftp_callback*.

	* sftp_bind.c (lsftp_lsftp_cb_init): Fixed a bug using the same
	memory both for sftp_cbs and lsftp_cbs, mumble!

2002-02-24  Pontus  <pont@it.uu.se>

	* sftp_bind.c (lsftp_remove_lsftp_cb): Use lsftp_nullcb to clean
	out callback.
	(lsftp_handle_packet): Changed variable i (used twice) to r.

	* sftp_bind.h: New function lsftp_nullcb.

	* sftp_bind.c (lsftp_compact_sftp_cbs): Fixed a bug that would
	loose callbacks before a hole if there were any more.
	(lsftp_compact_lsftp_cbs): Fixed the same bug for struct
	lsftp_callbacks.
	(lsftp_handle_packet): Clean out old state after callbacks, should
	hopefully make things more robust.

	(lsftp_nullcb): New function to clean a struct lsftp_callback.

	* dc.c (lsftp_dc_init): Check that malloc succeeded before using
	the memory (duh!).
	
	* sftp_bind.c: Removed obsolete default callback array sizes.

	* dc.c: Removed obsolete default dircache size.

	* lsftp.c (main): Always init the callbacks.

	* sftp_bind.c (lsftp_lsftp_cb_init): Also clear option flags.

	* lsftp.c (main): Added some comments.

	* sftp_bind.c (lsftp_do_put): Added some comments.

2002-02-22  Pontus  <pont@it.uu.se>

	* configure.ac (lsh_cv_c_attribute): Removed obsolete checks for
	behaviour of stat and lstat.

2002-02-12  Pontus  <pont@it.uu.se>

	* commands.c (com_mv): Didn't properly check for error in return value of
	lsftp_dc_r_isdir.

2002-02-11  Pontus  <pont@it.uu.se>

	* sftp-server.c (sftp_process_realpath): Added deugging message.
	(sftp_process): Added debugging message.
	(sftp_process_symlink): Added debugging message.

	* buffer.c (sftp_read_packet): If called with data left, flush
	(read and throw away) remaining data.

	* configure.ac: Created new configure.ac as a merge of the
	configure.in from lsftp and the sftp package.

	* Started new Changelog in sftp. 

