* cpio.c (vfs_cpiofs_ops): Use short name for the filesystem.

This avoids creating long filenames in dirent.c when the "name"
field is used.
* extfs.c (vfs_extfs_ops): Likewise.
* fish.c (vfs_fish_ops): Likewise.
* ftpfs.c (vfs_ftpfs_ops): Likewise.
* local.c (vfs_local_ops): Likewise.
(vfs_nil_ops): Likewise.
* mcfs.c (vfs_mcfs_ops): Likewise.
* sfs.c (vfs_sfs_ops): Likewise.
* tar.c (vfs_tarfs_ops): Likewise.
* undelfs.c (vfs_undelfs_ops): Likewise.
This commit is contained in:
Pavel Roskin 2001-06-11 21:58:58 +00:00
parent cc78b0ccdc
commit 6fe51516de
10 changed files with 25 additions and 10 deletions

View File

@ -1,3 +1,18 @@
2001-06-11 Pavel Roskin <proski@gnu.org>
* cpio.c (vfs_cpiofs_ops): Use short name for the filesystem.
This avoids creating long filenames in dirent.c when the "name"
field is used.
* extfs.c (vfs_extfs_ops): Likewise.
* fish.c (vfs_fish_ops): Likewise.
* ftpfs.c (vfs_ftpfs_ops): Likewise.
* local.c (vfs_local_ops): Likewise.
(vfs_nil_ops): Likewise.
* mcfs.c (vfs_mcfs_ops): Likewise.
* sfs.c (vfs_sfs_ops): Likewise.
* tar.c (vfs_tarfs_ops): Likewise.
* undelfs.c (vfs_undelfs_ops): Likewise.
2001-06-07 Pavel Roskin <proski@gnu.org>
* sfs.c (sfs_init): Change some warning messages to simplify

View File

@ -613,7 +613,7 @@ static struct vfs_s_data cpiofs_data = {
vfs vfs_cpiofs_ops = {
NULL, /* next pointer */
"CPIO dearchiver",
"cpiofs",
0, /* flags */
"ucpio", /* prefix */
&cpiofs_data, /* vfs_s_data */

View File

@ -1129,7 +1129,7 @@ static int extfs_setctl (vfs *me, char *path, int ctlop, char *arg)
vfs vfs_extfs_ops = {
NULL, /* This is place of next pointer */
"Extended filesystems",
"extfs",
F_EXEC, /* flags */
NULL, /* prefix */
NULL, /* data */

View File

@ -792,7 +792,7 @@ static struct vfs_s_data fish_data = {
vfs vfs_fish_ops = {
NULL, /* This is place of next pointer */
"FIles tranferred over SHell",
"fish",
F_EXEC, /* flags */
"sh:", /* prefix */
&fish_data, /* data */

View File

@ -1681,7 +1681,7 @@ static struct vfs_s_data ftp_data = {
vfs vfs_ftpfs_ops = {
NULL, /* This is place of next pointer */
N_("File Transfer Protocol (ftp)"),
"ftpfs",
F_NET, /* flags */
"ftp:", /* prefix */
&ftp_data, /* data */

View File

@ -295,7 +295,7 @@ local_which (vfs *me, char *path)
vfs vfs_local_ops = {
NULL, /* This is place of next pointer */
"Local filesystem",
"localfs",
0, /* flags */
NULL, /* prefix */
NULL, /* data */
@ -355,7 +355,7 @@ vfs vfs_local_ops = {
vfs vfs_nil_ops = {
NULL, /* This is place of next pointer */
"Filesystem which just returns failure",
"nullfs",
0, /* flags */
NULL, /* prefix */
NULL, /* data */

View File

@ -1120,7 +1120,7 @@ mcfs_setctl (vfs *me, char *path, int ctlop, char *arg)
vfs vfs_mcfs_ops = {
NULL, /* This is place of next pointer */
N_("Midnight Commander's private remote filesystem"),
"mcfs",
F_NET, /* flags */
"mc:", /* prefix */
NULL, /* data */

View File

@ -387,7 +387,7 @@ sfs_which (vfs *me, char *path)
vfs vfs_sfs_ops = {
NULL, /* This is place of next pointer */
N_ ("Single file filesystems"),
"sfs",
F_EXEC, /* flags */
NULL, /* prefix */
NULL, /* data */

View File

@ -519,7 +519,7 @@ static struct vfs_s_data tarfs_data = {
vfs vfs_tarfs_ops =
{
NULL, /* This is place of next pointer */
"TApe aRchiver decompressor",
"tarfs",
0, /* flags */
"utar", /* prefix */
&tarfs_data,

View File

@ -681,7 +681,7 @@ undelfs_init(vfs *me) {
vfs vfs_undelfs_ops = {
NULL, /* This is place of next pointer */
N_("Undelete filesystem for ext2"),
"undelfs",
0, /* flags */
"undel:", /* prefix */
NULL, /* data */