ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. Tue 24 Nov 12:43:20 1998 Peter Kleiweg <kleiweg@let.rug.nl>
  2. * vfs.c (vfs_parse_ls_lga): ignore trailing + in permission string
  3. which indicate a file with extented attributes (ACL)
  4. Mon Nov 23 21:19:43 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  5. * ftpfs.c (resolve_symlink_with_ls_options): that's resolve_symlinks
  6. we used up to release 4.1.35. It uses LIST -lLa to get symlink stats.
  7. (resolve_symlink_without_ls_options): that's resolve_symlinks
  8. we used in release 4.1.36 and 4.5.[01]. It gets symlink stats from the
  9. directory cache fetching directories if necessary. We got some
  10. complaints about slower ftpfs in the above releases. Now this methode
  11. is no longer the default methode to resolve symbolic links. It is still
  12. needed for ftp servers which don't understand the LIST -lLa command.
  13. (resolve_symlink): Dispatch between the two methods to
  14. resolve symlinks.
  15. Sat Nov 21 21:38:08 1998 Pavel Machek <pavel@bug.ucw.cz>
  16. * vfs.c (vfs_parse_ls_lga): corrected stupid bug in parse_ls_lga,
  17. thanks to Pavel Roskin for reporting
  18. * direntry.c (vfs_s_lseek): -1 is invalid filehandle, not 0
  19. * utilvfs.c (vfs_split_url): initialize variables so that we do
  20. not return garbage
  21. Sat Nov 7 20:19:14 1998 Pavel Machek <pavel@bug.ucw.cz>
  22. * vfs.c: Converted g_return_if_fail into vfs_dies(), removed them
  23. where unneccessary. I do not see why passing NULL to vfs_add_stamp
  24. should be invalid -> removed check.
  25. Mon Nov 2 23:09:55 1998 Pavel Machek <pavel@bug.ucw.cz>
  26. * direntry.c, xdirentry.h: should be now prepared to handle
  27. ftp-like filesystems. This is rather BIG change, altrough it does
  28. not look so. I hope I do not break too many things.
  29. Mon Nov 16 16:39:39 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  30. * vfs.c (vfs_parse_ls_lga): Report unrecognized lines.
  31. Thu Nov 12 11:28:48 1998 Pavel Roskin <pavel_roskin@geocities.com>
  32. * extfs/rpm: Fix to display files belonging to users with
  33. excessively long usernames
  34. 1998-10-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
  35. * fish.c (command): Replace vnsprintf with g_strdup_vprintf. This
  36. is both safe and more correct, as there is no limit on the
  37. pathname.
  38. * ftpfs.c (command): Same as above.
  39. * util-alone.c (print_vfs_message): Same as above.
  40. Wed Oct 28 17:06:57 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  41. * ftpfs.c: report which directory you are listing, fix behaviour
  42. with servers that don't like LIST //. (Nowell) Fix behaviour even
  43. with NT.
  44. * direntry.c (vfs_s_automake): insert newly generated entry
  45. * direntry.c (vfs_s_free_entry): Debugging printf() killed.
  46. Mon Oct 26 00:38:30 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  47. * Make-mc.in: added xdirentry.h to VFSHDRS
  48. Fri Oct 23 12:29:48 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  49. * tar.c (tar_open_archive): do not double-free memory if you can
  50. not open archive, better error handling
  51. * Makefile.in: add direntry.o to list of NONETFILES so we actually compile
  52. * sfs.c, tar.c: remove debugging messages (which really should not
  53. escape from my tree)
  54. Thu Oct 22 22:24:44 1998 Pavel Machek <pavel@bug.ucw.cz>
  55. * README: added. If you are using emacs or hacking libvfs, please
  56. read this one.
  57. * direntry.{c,h}: new library created, so that same entry/inode
  58. code does not have to be copied in every handler.
  59. * tar.c: converted to use direntry.c library, which means BIG changes.
  60. * ftpfs.c: small updates to make code look nicer
  61. Mon Oct 19 19:40:58 1998 Pavel Machek <pavel@bug.ucw.cz>
  62. * vfs.h (&more): killed ERRNOR() from vfs.h and put it into files
  63. which actually need it.
  64. * extfs.c: extfs_current_dir killed - it was unneccessary.
  65. * mcfs.c (mcfs_get_path): It is possible for path not to begin
  66. with /#mc:, for example if user does /etc/#mc:. (It is not
  67. correct, of course). Return error, but do not vfs_die().
  68. Sun Oct 18 23:48:00 1998 Pavel Machek <pavel@bug.ucw.cz>
  69. * lib/mc.ext.in: cpio support fixed. It was broken since time we
  70. started to do #ext syntax.
  71. Sat Oct 17 20:43:20 1998 Pavel Machek <pavel@bug.ucw.cz>
  72. * vfs.c (mc_open): die() if open is unsupported. If filesytem does
  73. not support open, it is probably stupid typo, so we want bug to be
  74. fixed.
  75. Thu Oct 22 20:30:28 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  76. * ftpfs.c (resolve_symlink, retrieve_dir): Don't timeout and
  77. free dcache while resolving symlinks (i.e. don't free some
  78. pointers which are in use by resolve_symlink).
  79. Mon Oct 19 11:44:47 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  80. * mcfs.c: prefix is mc:, not mcfs:. So now mcfs actually works.
  81. Thu Oct 15 17:17:17 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  82. * shared_ftp_fish.c (s_write): stupid bug fixed
  83. Tue Oct 13 00:22:52 1998 Pavel Machek <pavel@bug.ucw.cz>
  84. * extfs/*: marked obvious security holes with FIXME: TMP RACE
  85. * vfs.c (mc_def_getlocalcopy): creat->open(..,O_EXCL), to prevent
  86. symlink attack, fixed memory leak along the path
  87. 1998-10-13 Miguel de Icaza <miguel@nuclecu.unam.mx>
  88. * vfs.c, vfs.h: Indentation chages, ugly macros removed. I am
  89. going to split this file in the future.
  90. Tue Oct 13 18:43:18 1998 Pavel Machek <pavel@lomikel.karlin.mff.cuni.cz>
  91. * vfs.c (vfs_add_noncurrent_stamps): Fixed typo reported by Andrej
  92. Borsenkow <borsenkow.msk@sni.de>
  93. Tue Oct 13 12:42:10 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  94. * vfs.h (vfs_struct): renamed to avoid namespace conflict
  95. Mon Oct 12 22:42:30 1998 Pavel Machek <pavel@bug.ucw.cz>
  96. * sfs.c: reuse mmap from local.c
  97. * ftpfs.c, fish.c, shared_ftp_fish.c: horrible reget hack removed,
  98. and replaced with open(,O_LINEAR); lseek() combination
  99. Sun Oct 11 01:44:37 1998 Pavel Machek <pavel@bug.ucw.cz>
  100. * mcfs.c (open_tcp_link): Moved: it used to be in utilvfs.c, but
  101. as it deals with portmapper, it is probably usefull for mcfs
  102. * vfs.h (MCERR_*): these are no longer needed
  103. * vfs.c (vfs_translate_url): translating of url's moved to vfs
  104. code
  105. * all around: trying to reduce namespace pollution. All special
  106. functions (like extfs_run) should be done using mc_setctl()
  107. interface. At the end, all non-static functions in vfs layer
  108. should begin with vfs_ and should be declared in vfs.h (however
  109. that goal is far away).
  110. * all over the code: replace X_vfs_ops to vfs_X_ops
  111. Mon Oct 5 20:11:01 1998 Pavel Machek <pavel@bug.ucw.cz>
  112. * vfs.c: added stat to avoid hiding files by naming them
  113. #ftp:localhost and similar. Vfs will not treat files as local if
  114. they already exists, regardless of name.
  115. Tue Oct 6 15:34:22 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  116. * vfs.h: disable BROKEN_PATHS by default. See if you can live
  117. without cd .. from ftp tree putting you to last directory.
  118. Sat Oct 3 14:28:57 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  119. * ftpfs.c (resolve_symlink): fixed cut'n paste error in my last
  120. change, i.e. make it compile)
  121. Sat Oct 3 01:03:37 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  122. * ftpfs.c (resolve_symlink): minor speed enhancement
  123. Thu Oct 1 18:39:52 1998 Pavel Roskin <pavel_roskin@geocities.com>
  124. * vfs.h: vfs_force_expire() was incorrectly #define'd
  125. Tue Sep 29 17:23:03 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  126. * extfs.c, sfs.c: added few static's to prevent people from doing
  127. stupid things
  128. Mon Sep 28 21:43:16 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  129. * vfs.h (struct vfs): renamed errno to verrno because glibc2
  130. defines errno as macro (#define errno (*__errno_location ()))
  131. Mon Sep 28 21:34:03 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  132. * Makefile.in: search config.status in builddir and not in srcdir/..,
  133. i. e. make it compile for builddir != srcdir
  134. Sun Sep 27 16:16:52 1998 Pavel Machek <pavel@bug.ucw.cz>
  135. * COPYING.LGPL, all over the code: code is now under Library
  136. General Public License (instead of GPL), so non-free applications
  137. can link to it.
  138. Wed Sep 23 22:37:40 1998 Pavel Machek <pavel@bug.ucw.cz>
  139. * all over the code: added (vfs *) as first argument for functions
  140. that have no other way to know what fs they belong to. This will
  141. be used by object-like tricks, which will allow us to do real
  142. code-sharing: I do not like #including of .c files.
  143. 1998-09-25 Miguel de Icaza <miguel@nuclecu.unam.mx>
  144. * shared_ftp_fish.c: Addaed prototypes for linear_start, linear_read,
  145. linear_close
  146. Wed Sep 23 15:09:55 1998 Tom Tromey <tromey@cygnus.com>
  147. * vfs.h (MIN, MAX): Only define if not already defined; glib.h
  148. also defines them.
  149. Wed Sep 23 13:33:14 1998 Pavel Machek <pavel@ucw.cz>
  150. * ftpfs.c: Fixed segfault caused by unitialized varialble
  151. Wed Sep 23 11:51:12 1998 Pavel Roskin <pavel_roskin@geocities.com)
  152. * ftpfs.c: Special characters were printed via print_vfs_message.
  153. This caused funny effects if "XTerm hintbar" was on.
  154. Mon Sep 21 11:40:30 1998 Pavel Machek <pavel@ucw.cz>
  155. * ftpfs.c, fish.c: added O_LINEAR mode to handle linear read of
  156. files in sane way. copy_file_file will make temporary files for a
  157. while (fix pending).
  158. * tar.c: fixed bzip/bzip2 compressed archives
  159. Wed Sep 18 12:51:51 1998 Pavel Machek <pavel@ucw.cz>
  160. * fish.c, vfs.c: created aliases /#ssh: and /#rsh:
  161. * vfs.h: created ERRNOR() macro which sets my_errno and returns,
  162. which makes vfs's _much_ more readable
  163. Fri Sep 18 10:37:28 1998 Pavel Roskin <pavel_roskin@geocities.com)
  164. * extfs.c: free() was called twice for the same place in memory
  165. in extfs_open()
  166. Tue Sep 15 20:31:32 1998 Norbert Warmuth <k3190@fh-sw.de>
  167. * ftpfs.c (ftp_use_unix_list_options): New global variable/option.
  168. If true we try to use 'LIST -la <path>'. When it fails we use the
  169. two commands 'CWD <path>' and 'LIST' instead.
  170. (resolve_symlink): rewritten. Don't get a second directory listing
  171. with `LIST -lLa'. Instead use the cache to get the file stat of
  172. symbolic links. If the directory the symlink points to isn't
  173. already in the cache the directory listing will be fetched and
  174. stored in the directory cache (without resolving symlinks
  175. recursively).
  176. The new method to resolve symlinks is faster if symlinks
  177. the same directory or the directory the symlink points to
  178. is already in the cache.
  179. This function was small and nice until I discovered that it was
  180. broken for symlinks to symlinks. Now it looks ugly and perhaps I
  181. will revert it to use "LIST -lLa" again. With a fast connection it
  182. doesn't matter which methode we use but with a slow connection I
  183. wouldn't hesitate to burn more cpu cycles on the client side.
  184. (retrieve_dir): Added parameter to tell whether to resolve
  185. symlinks (don't resolve symlinks in directory listings retrieved
  186. while resolving symlinks).
  187. When we don't get a directory listing with 'LIST -la <path>' then
  188. try to get it with `CWD <path>; LIST'.
  189. Tue Sep 15 20:27:29 1998 Norbert Warmuth <k3190@fh-sw.de>
  190. * ftpfs.c (login_server): s/ftpfs_get_host/my_get_host/
  191. (retrieve_file_start2): Don't create target file O_EXCL, in
  192. copy_file_file we check existance of the target file and know
  193. that we want to truncate it (this change was already done a
  194. while back but it was reverted with the vfs-split).
  195. Tue Sep 15 20:15:42 1998 Norbert Warmuth <k3190@fh-sw.de>
  196. * ftpfs.h (struct connection): added boolean which indicates that
  197. the ftp server doesn't understand Unix ls options
  198. * ftpfs.h (struct dir): added enum to store symlink status of the
  199. in memory directory cache (directory has no symbolic links;
  200. symbolic links but not yet resolved; symbolic links which are resolved)
  201. Tue Sep 15 20:02:08 1998 Norbert Warmuth <k3190@fh-sw.de>
  202. * shared_ftp_fish.c, fish.c: updated references to retrieve_dir to
  203. honour the additional boolean parameter
  204. Tue Sep 15 00:42:15 1998 Timur Bakeyev <mc@bat.ru>
  205. * vfs.h: add vfs_split() declaration, to make sfs.c happy.
  206. * Make-mc.in, Makefile.am: Updated to include fish.c
  207. 1998-09-14 Norbert Warmuth <k3190@fh-sw.de>
  208. * sfs.c (sfs_free): assignment operator was used to check for equality
  209. Fri Sep 11 22:36:38 1998 Pavel Machek <pavel@ucw.cz>
  210. * sfs.c: memory leak fixed
  211. * vfs.c: split parse_ls_lga into more functions
  212. * fish.c added, now you can access files over rsh/ssh connection
  213. * shared*.c: reworked a bit not to include so many of ugly X_'s
  214. Wed Sep 2 13:59:47 1998 Pavel Machek <pavel@ucw.cz>
  215. * ftpfs.c: cleanup of code, few static's added
  216. * extfs/uarj: added, still, you need patches to unarj to make this
  217. work
  218. * util-alone.c: now includes code from libvfs.c, so we can kill
  219. libvfs.c (which is good thing as it was non-standard in Makefiles)
  220. Sun Aug 30 13:19:49 1998 Pavel Machek <pavel@ucw.cz>
  221. * undelfs.c: fixed, it has been broken for too long
  222. * vfs.c, ../src/cmd.c: neccessary minor fixes to make undelfs work
  223. * vfs.c: made more fields in *_vfs_ops optional, cleanup of errno
  224. handling in case of NULL in *_vfs_ops.
  225. * extfs.c, ftpfs.c, tar.c: made use of above change
  226. * vfs.c: cleanup of macros generating mc_*()
  227. * libvfs.c: adding variable mc_home
  228. Thu Aug 27 19:45:31 1998 Pavel Roskin <pavel_roskin@geocities.com>
  229. * extfs.c: mc_extfsdir was not defined in extfs_open()
  230. * Make-mc.in: sfs.c was not compiled, linked and copied out
  231. extfs/sfs.ini was not installed and copied out
  232. * Makefile.am: sfs.c was not linked to standalone VFS
  233. Tue Aug 25 17:54:17 1998 Pavel Machek <pavel@ucw.cz>
  234. * Added vfs_uid for use by libvfs.so users (rpc.nfsd)
  235. * Added single file filesystem (sfs)
  236. * Added vfs_flags so library users can disable selected
  237. filesystems
  238. * Minor shuffling of functions so garbage collection works for
  239. library
  240. 1998-08-20 Raja R Harinath <harinath@cs.umn.edu>
  241. * Makefile.am (mad.c, mad.h): Create symlinks to counterparts in
  242. `mc-src'.
  243. Wed Aug 12 19:04:48 1998 Pavel Roskin <pavel_roskin@geocities.com>
  244. * extfs/patchfs: %k replaced with more portable %H in the format
  245. for "date" command
  246. * extfs/extfs.ini: Added patchfs and mailfs. Some comments
  247. changed
  248. Tue Aug 11 15:25:52 1998 Pavel Roskin <pavel_roskin@geocities.com>
  249. * extfs/rpm: Fix for buggy "cut" on HP-UX 10.20 which ignores
  250. lines without enf-of-line.
  251. Mon Jun 01 03:30:07 1998 Alexander Savelyev <fano@vcom.kiev.ua>
  252. * tar.c (read_header): Support for linkflag on BSDI tar (pax), it
  253. is always 0.
  254. 1998-06-22 Miguel de Icaza <miguel@nuclecu.unam.mx>
  255. * ftpfs.c (ftpfs_open_socket): Potential security break fix.
  256. 1998-08-06 Raja R Harinath <harinath@cs.umn.edu>
  257. * Makefile.am (BUILT_SOURCES): Make it `make dist' friendly.
  258. Don't try building this, yet.
  259. 1998-07-31 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
  260. * Make-mc.in (install.extfs): Splitted install of $(EXTFS_CONST)
  261. and $(EXTFS_OUT) because the first must be installed from
  262. $(srcdir) and the second from $(builddir).
  263. Fri Jul 24 00:22:30 1998 Tom Tromey <tromey@cygnus.com>
  264. * Make-mc.in (DISTVFS): Changed Makefile.in to Make-mc.in.
  265. * Makefile.am: New file.
  266. * Make-mc.in: Renamed from Makefile.in.
  267. * Makefile.in: Removed.
  268. Mon Jun 29 15:12:55 1998 Pavel Roskin <pavel_roskin@geocities.com>
  269. * Makefile.in: Rewritten stuff concerning extfs files.
  270. Mon Jun 22 22:30:00 1998 Manish Vachharajani <mvachhar@vger.rutgers.edu>
  271. * Makefile.in: Remove arfs, since it doesn't seem to exist
  272. Wed Jun 17 Pavel Machek <pavel@ucw.cz>
  273. * Rename helper scripts (extfs/{rar|lha|...}.in), so their names
  274. are more logical (and so that things actually work, because new
  275. names are currently in extfs.ini).
  276. Wed Jun 17 Pavel Machek <pavel@ucw.cz>
  277. * Modified code to use tempnam() instead of tmpnam(), fixed
  278. tempnam() to use NULL instead of 0.
  279. Wed Jun 3 Pavel Machek <pavel@ucw.cz>
  280. * libvfs.c: adding libvfs.c which should contain things specific
  281. to stand-alone libvfs.so. (This file was missing from previous
  282. merge.)
  283. Mon Jun 1 16:00:19 1998 Norbert Warmuth <k3190@fh-sw.de>
  284. * ftpfs.c (ftpfs_fill_names): use right character to seperate
  285. prefix and username
  286. Mon Jun 1 14:19:20 1998 Bakeyev I. Timur <timur@comtat.kazan.ru>
  287. * vfs.c (parse_ls_lga): allow a bit wider range of listings.
  288. * vfs.c (is_time, is_year): new functions
  289. Mon Jun 1 12:47:50 1998 Norbert Warmuth <k3190@fh-sw.de>
  290. * ftpfs.c (ftpfs_forget): Use the new ftpfs prefix.
  291. Thu May 28 16:42:31 1998 Pavel Machek <pavel@ucw.cz>
  292. * extfs.c, shared.c, tar.c: I changed semantics in my previous
  293. patch - _get_path() now modifies strings passed to it. I thought
  294. that I were carefull enough not to introduce bugs. You guessed it -
  295. I was not. [Many tar_ and extfs_ functions modify strings passed
  296. to them, but as they are only called from vfs layer, it does not
  297. matter much.]
  298. So I renamed function to alert everyone that semantics changed.
  299. Fixed bugs in timestamping (and segfaults) when you entered tar
  300. inside zip file or similar.
  301. * vfs.c (mc_open): Die if the filesystem doesn't support open
  302. ??? Pavel Machek <pavel@ucw.cz>
  303. * shared.c: Shared parts of extfs.c and tar.c are now in shared.c
  304. * util-alone.*: VFS should be able to compile stand-alone into
  305. libvfs.so usable by anyone. This is first step.
  306. * vfs.c & others: syntax change. We no longer use
  307. tar:/path.tar/file. Now, syntax is /path.tar#utar/file, which has
  308. better defined meaning. Similar changes are done to all other
  309. protocols. This change touched really _many_ places of code.
  310. 1998-05-26 Miguel de Icaza <miguel@nuclecu.unam.mx>
  311. * vfs.c (MC_DIROP): Macro now returns the proper value.
  312. 1998-maj-18 Tamasi Gyorgy (gt_cosy@usa.net)
  313. * Makefile.in ('install' target): 'mcserv' not installed, if
  314. net-code is not enabled by 'configure'.
  315. Thu May 14 02:05:52 1998 Norbert Warmuth <k3190@fh-sw.de>
  316. * Makefile.in (LIBS): add @LINTL@
  317. Sun May 10 14:51:03 1998 Norbert Warmuth <k3190@fh-sw.de>
  318. * ftpfs.c (__ftpfs_chdir): CWD command wasn't sent at all. This
  319. optimation is wrong because for directories containing spaces we
  320. have to "CWD <pathname>" and "LIST -la" instead of
  321. "LIST -la <pathname>".
  322. I implemented a different optimation. Now ftpfs_chdir only stores
  323. the new working directory and sets a flag. __ftpfs_chdir is called
  324. when we really want to change the directory on the ftp server.
  325. (resolve_symlink): Log the directory listing to the logfile.
  326. * ftpfs.h (struct ftpfs_connection): Added a (per connection)
  327. cwd_defered flag.
  328. Mon May 4 10:27:49 1998 Norbert Warmuth <k3190@fh-sw.de>
  329. * Makefile.in: Links to mad.c and mad.h were created wrong when
  330. srcdir != builddir and directory depth to srcdir and builddir were
  331. different (e.g. srcdir=/src/mc and builddir=/src/compile/mc)
  332. * ftpfs.c (retrieve_file_start2): Don't create target file O_EXCL,
  333. in copy_file_file we check existance of the target file and know
  334. that we want to truncate it.
  335. 1998-04-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
  336. * tar.c (read_header): Mark regular files with S_IFREG.
  337. Tue Apr 28 06:06:03 1998 Norbert Warmuth <k3190@fh-sw.de>
  338. * extfs.c (extfs_open, extfs_close): Changed my_system(1,...) to
  339. my_system(EXECUTE_AS_SHELL,...), this fixes the broken copyin and
  340. copyout of 4.1.32.
  341. 1998-04-23 Miguel de Icaza <miguel@nuclecu.unam.mx>
  342. * ftpfs.c (retrieve_file_start2): Open file exclusively.
  343. (retrieve_file): likewise.
  344. 1998-03-31 Philippe De Muyter <phdm@macqel.be>
  345. * vfs.h: compilation fix for m68k-motorola-sysv
  346. Wed Mar 25 19:01:48 1998 Norbert Warmuth <k3190@fh-sw.de>
  347. * extfs/hp48: Added a usage summary
  348. Mon Mar 23 00:42:21 1998 Christofer Edvardsen <ce@earthling.net>
  349. * Makefile.in, extfs/extfs.ini, extfs/hp48: New external
  350. filesystem to view and copy files to/from the HP48.
  351. Wed Feb 11 14:09:02 1998 Oleg <oleg@pobox.com>
  352. * extfs.c: Add support for writtable external file systems.
  353. Required for the httpfs.
  354. Fri Jan 23 07:27:37 1998 Peter Daum <gator@cs.tu-berlin.de>
  355. * extfs.c (open_extfs_archive): Pass the quoted argument to the
  356. list command.
  357. * mailfs: new file system.
  358. 1997-12-21 Yuri Kuzmenko <Yuri.Kuzmenko@f169.n463.z2.fidonet.org>
  359. * tar.c: fix the bug which core dumps when trying to view tar file
  360. with many files (over 60000).
  361. Mon Jul 21 18:47:37 1997 Miguel de Icaza <miguel@athena.nuclecu.unam.mx>
  362. * vfs.c (mc_opendir): Do not make conversions between int/void *
  363. to make the code compile and work on the Alpha correctly.
  364. Allocate a pointer to an int and use that instead.
  365. Thu Jul 3 19:08:43 1997 Michele Marziani <marziani@axpfe1.fe.infn.it>
  366. * extfs/rpm: Small fix for older RPM files.
  367. Mon Jun 9 19:00:30 1997 Norbert Warmuth <k3190@fh-sw.de>
  368. * vfs/vfs.c (vfs_canon): Fix for the 'cd a:/somedir/..' problem
  369. * vfs/vfs.c (vfs_add_non_current_stamps): when leaving a mtools fs
  370. free the extfs buffers immediatly instead of waiting for the vfs-
  371. timeout
  372. Thu May 29 14:50:41 1997 Miguel de Icaza <miguel@athena.nuclecu.unam.mx>
  373. * vfs.c (vfs_canon): the "local:" case was consuming one extra
  374. character. This fixes the bug reported by Andrej. Also, handle
  375. the non-canonical case of arguments to local:
  376. Tue May 27 20:38:28 1997 Miguel de Icaza <miguel@athena.nuclecu.unam.mx>
  377. * mcserv.c (get_client): The parent now waits for the first forked
  378. process, getting rid of the zombies.
  379. * utilvfs.c (open_tcp_link): If we can not contact the remote
  380. portmapper, set the protocol version to 1.
  381. Fri May 16 16:42:18 1997 Tomasz K³oczko, <kloczek@rudy.mif.pg.gda.pl>
  382. * mc.spec: New spec file, this packages mc, mcserv and tkmc.
  383. * lib/mcserv.init, lib/mc.sh, lib/mcserv.pamd: added
  384. * vfs/ext/rpm: instead using sed and rpm -qpi use rpm queries,
  385. more info currently displayed (changeslogs, Os, URL, packager
  386. Tue May 13 18:14:49 1997 Wojtek Pilorz <wpilorz@bdk.lublin.pl>
  387. * vfs/Makefile.in (INSTALL_PROGRAM): Use -m flag for install to
  388. force vfs scripts to be executable on those systems that use
  389. install.sh
  390. * src/utilunix.c: Implement socketpair for SCO flavored systems.
  391. Mon Mar 17 12:03:50 1997 Norbert Warmuth <k3190@fh-sw.de>
  392. * configure.in (--with-hsc): fix.
  393. * vfs/ftpfs.c (ftpfs_get_proxy_host_and_port): Fixed wrong parameter
  394. passing (HSC_DEFAULT_PORT was passed as pointer to char instead of
  395. passing it as integer)
  396. Tue Feb 25 20:21:00 1997 Joseph M. Hinkle <jhinkle@rockisland.com>
  397. * extfs/lha: Updated the lha filesystem and included a command
  398. for running an executable from within an lha archive suggested
  399. by Zdenek Kabelac <kabi@informatics.muni.cz>
  400. * extfs/: Renamed cpio, deb, rar, rpm as *.in files and altered
  401. config.in to create these VFS's for cleaner compilation