Sat Oct 3 00:54:23 1998 Norbert Warmuth <nwarmuth@privat.circular.de>

* gtkedit/Makefile.in (EDITOBJS): removed one wrong \\ (line
continuation)

Sat Oct  3 01:03:37 1998  Norbert Warmuth  <nwarmuth@privat.circular.de>

* vfs/ftpfs.c (resolve_symlink): minor speed enhancement
This commit is contained in:
Norbert Warmuth 1998-10-02 23:01:16 +00:00
parent 32f8acdf52
commit b0280fd397
4 changed files with 11 additions and 1 deletions

View File

@ -26,7 +26,7 @@ EDITSRC = edit.c editcmd.c editdraw.c \
EDITOBJS = edit.o editcmd.o editdraw.o \
editwidget.o gtkedit.o gtkeditkey.o \
mousemark.o propfont.o syntax.o wordproc.o \
mousemark.o propfont.o syntax.o wordproc.o
DIST = Makefile.in $(EDITSRC)

View File

@ -1,3 +1,8 @@
Sat Oct 3 00:54:23 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* gtkedit/Makefile.in (EDITOBJS): removed one wrong \\ (line
continuation)
Thu Oct 1 18:43:34 1998 Pavel Roskin <pavel_roskin@geocities.com>
* file.c: Commented out search for egrep because execvp() does

View File

@ -1,3 +1,7 @@
Sat Oct 3 01:03:37 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* ftpfs.c (resolve_symlink): minor speed enhancement
Thu Oct 1 18:39:52 1998 Pavel Roskin <pavel_roskin@geocities.com>
* vfs.h: vfs_force_expire() was incorrectly #define'd

View File

@ -1047,6 +1047,7 @@ resolve_symlink(struct connection *bucket, struct dir *dir)
strcat (tmp + 1, fel->linkname);
}
for ( ;; ) {
canonicalize_pathname (remote_path);
fe = _get_file_entry(bucket, tmp, 0, 0);
if (fe) {
if (S_ISLNK (fe->s.st_mode) && fe->l_stat == 0) {