about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-04-12 13:06:18 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-04-12 13:06:18 +0000
commitc80d9e45e6e2066103da224276eefcf04a523988 (patch)
treee0f9eebe108c109a39514b91c0d7d9795333ca71 /Src/zsh.h
parent4a3b94ca4011b81ef704fdd600bb11cdc00a2a94 (diff)
downloadzsh-c80d9e45e6e2066103da224276eefcf04a523988.tar.gz
zsh-c80d9e45e6e2066103da224276eefcf04a523988.tar.xz
zsh-c80d9e45e6e2066103da224276eefcf04a523988.zip
compare mapped zwc files using stat instead of the pathnames (10699)
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 6c5c9122d..5d1a8b1c8 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -487,7 +487,8 @@ typedef struct eprog *Eprog;
 
 struct funcdump {
     FuncDump next;		/* next in list */
-    char *name;			/* path name */
+    dev_t dev;			/* device */
+    ino_t ino;			/* indoe number */
     int fd;			/* file descriptor */
     Wordcode map;		/* pointer to header */
     Wordcode addr;		/* mapped region */