Made name and prefix of vfs_class constant.

This commit is contained in:
Roland Illig 2004-08-17 11:19:31 +00:00
parent 94d1dea0b9
commit 8a0b96bd27

View File

@ -12,9 +12,9 @@ typedef void (*fill_names_f) (const char *);
struct vfs_class {
struct vfs_class *next;
char *name; /* "FIles over SHell" */
const char *name; /* "FIles over SHell" */
int flags;
char *prefix; /* "fish:" */
const char *prefix; /* "fish:" */
void *data; /* this is for filesystem's own use */
int verrno; /* can't use errno because glibc2 might define errno as function */