1
1

1999-04-25 Miguel de Icaza <miguel@nuclecu.unam.mx>

* extfs/uzip.in (nam): Handle new unzips.
Этот коммит содержится в:
Miguel de Icaza 1999-04-25 19:34:47 +00:00
родитель 52d700b4b0
Коммит 449bee9014
3 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,3 +1,7 @@
1999-04-25 Miguel de Icaza <miguel@nuclecu.unam.mx>
* extfs/uzip.in (nam): Handle new unzips.
Fri Apr 23 21:02:32 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
* ftpfs.c (retrieve_dir): If we don't get any valid directory entry

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

@ -58,7 +58,7 @@ if test -n "$DOZIPINFO"; then
BEGIN { hyphens=0 }
/^Archive/ { next }
/^\ Length/ { next }
/^\ ------/ { if (hyphens > 0) exit 0; hyphens=1; next }
/^\ ?------/ { if (hyphens > 0) exit 0; hyphens=1; next }
{
if (hyphens < 1) next;
if ($8 ~ /^\^/)

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

@ -1445,6 +1445,7 @@ int vfs_parse_filemode (char *p)
case 's': res |= 0010 | S_ISGID; break;
case 'l': /* Solaris produces these */
case 'S': res |= S_ISGID; break;
case 'l': break; /* ignore mandatory locking, dunno what to do with this*/
case '-': break;
default: return -1;
}