aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-04-12 23:48:47 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-04-12 23:48:47 +0000
commitdc223932b8b4006810cf8259efe149e760b41029 (patch)
tree833ef24a25d2e5545d253242b713f83d4f2b9eeb
parent6cacb84377243e36fd4602b5788fc258a03ac7d6 (diff)
another try to fix the unix build
svn path=/trunk/; revision=14063
-rw-r--r--epan/filesystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/filesystem.c b/epan/filesystem.c
index 69bc56ffff..8bb384087a 100644
--- a/epan/filesystem.c
+++ b/epan/filesystem.c
@@ -793,8 +793,8 @@ files_identical(const char *fname1, const char *fname2)
*/
infile.st_ino = 1; /* These prevent us from getting equality */
outfile.st_ino = 2; /* If one or other of the files is not accessible */
- stat(cf->filename, &infile);
- stat(fname, &outfile);
+ stat(fname1, &infile);
+ stat(fname2, &outfile);
if (infile.st_ino == outfile.st_ino) {
return TRUE;
} else {