1
1
Этот коммит содержится в:
Timur Bakeyev 1998-09-14 20:50:11 +00:00
родитель 23a9f263db
Коммит 38d687870f
4 изменённых файлов: 12 добавлений и 4 удалений

Просмотреть файл

@ -1,8 +1,15 @@
Tue Sep 15 00:42:15 1998 Yimur Bakeyev <mc@bat.ru>
* vfs.h: add vfs_split() declaration, to make sfs.c happy.
* Make-mc.in, Makefile.am: Updated to include fish.c
1998-09-14 Norbert Warmuth <k3190@fh-sw.de>
* sfs.c (sfs_free): assignment operator was used to check for equality
Fri Sep 11 22:36:38 1998 Pavel Machek <pavel@ucw.cz>
* sfs.c: memory leak fixed
* vfs.c: split parse_ls_lga into more functions

Просмотреть файл

@ -20,12 +20,12 @@ AR = @AR@
#
# VFS code
#
NETFILES = tcputil.o ftpfs.o mcfs.o utilvfs.o
NETFILES = tcputil.o fish.o ftpfs.o mcfs.o utilvfs.o
NONETFILES = local.o vfs.o tar.o sfs.o names.o container.o extfs.o \
@undelfs_o@
VFSSRCS = local.c vfs.c mcfs.c tcputil.c tar.c sfs.c names.c shared.c \
ftpfs.c container.c mcserv.c extfs.c undelfs.c utilvfs.c
ftpfs.c container.c mcserv.c extfs.c undelfs.c utilvfs.c fish.c
VFSHDRS = vfs.h mcfs.h tcputil.h tar.h container.h ftpfs.h names.h \
extfs.h
@ -44,7 +44,7 @@ EXTFSSTUFF = $(EXTFS_MISC) $(EXTFS_CONST) $(EXTFS_IN)
# Commands to build standalone version (.so)
#
VFSSOOBJS = tcputil.so ftpfs.so mcfs.so utilvfs.so local.so vfs.so \
VFSSOOBJS = tcputil.so fish.so ftpfs.so mcfs.so utilvfs.so local.so vfs.so \
tar.so sfs.so names.so container.so extfs.so util-alone.so \
util.sor utilunix.sor

Просмотреть файл

@ -18,7 +18,7 @@ mad.h: mc-src/mad.h
$(LN_S) $< $@
libvfs_la_SOURCES = callback.h container.c container.h extfs.c extfs.h \
ftpfs.c ftpfs.h libvfs.c local.c mad.c mad.h mcfs.c mcfs.h mcserv.c \
ftpfs.c ftpfs.h fish.c libvfs.c local.c mad.c mad.h mcfs.c mcfs.h mcserv.c \
names.c names.h shared.c tar.c tar.h sfs.c tcputil.c tcputil.h undelfs.c \
undelfs.h util-alone.c util-alone.h utilvfs.c vfs.c vfs.h

Просмотреть файл

@ -111,6 +111,7 @@ struct utimbuf {
extern int vfs_type_absolute;
vfs *vfs_type (char *path);
vfs *vfs_split (char *path, char **inpath, char **op);
vfsid vfs_ncs_getid (vfs *nvfs, char *dir, struct vfs_stamping **par);
void vfs_rm_parents (struct vfs_stamping *stamp);
char *vfs_path (char *path);