Remove fish_which().

This commit is contained in:
Pavel Roskin 2002-11-13 04:00:28 +00:00
parent 15f131afc9
commit 70ec6bbd26
2 changed files with 1 additions and 13 deletions

View File

@ -1,6 +1,6 @@
2002-11-12 Pavel Roskin <proski@gnu.org>
* fish.c (fish_which): Make static.
* fish.c (fish_which): Remove.
2002-11-12 Andrew V. Samoilov <sav@bcs.zp.ua>

View File

@ -323,18 +323,6 @@ archive_same(vfs *me, vfs_s_super *super, char *archive_name, char *op, void *co
return flags;
}
static int
fish_which (vfs *me, char *path)
{
if (!strncmp (path, "/#sh:", 5))
return 1;
if (!strncmp (path, "/#ssh:", 6))
return 1;
if (!strncmp (path, "/#rsh:", 6))
return 1;
return 0;
}
static int
dir_uptodate(vfs *me, vfs_s_inode *ino)
{