summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-28 08:19:14 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-28 08:19:14 +0000
commita7c83e21542eef9aa501c077dff6273d44c76fcb (patch)
tree7e65c0b8739f4ab0205ed27ae2e45f37f2a9f339 /src
parent4534e7876d04c29bcae60328b6e24757081d60e4 (diff)
downloadxine-lib-a7c83e21542eef9aa501c077dff6273d44c76fcb.tar.gz
xine-lib-a7c83e21542eef9aa501c077dff6273d44c76fcb.tar.bz2
Don't use the new name for pathname parameter from upstream, fix build.
CVS patchset: 8317 CVS date: 2006/09/28 08:19:14
Diffstat (limited to 'src')
-rw-r--r--src/input/vcd/libcdio/iso9660_fs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/vcd/libcdio/iso9660_fs.c b/src/input/vcd/libcdio/iso9660_fs.c
index 4a18c99b9..0a2de8fa1 100644
--- a/src/input/vcd/libcdio/iso9660_fs.c
+++ b/src/input/vcd/libcdio/iso9660_fs.c
@@ -1,5 +1,5 @@
/*
- $Id: iso9660_fs.c,v 1.5 2006/09/26 22:23:51 dgp85 Exp $
+ $Id: iso9660_fs.c,v 1.6 2006/09/28 08:19:14 dgp85 Exp $
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
@@ -51,7 +51,7 @@
#include <stdio.h>
-static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.5 2006/09/26 22:23:51 dgp85 Exp $";
+static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.6 2006/09/28 08:19:14 dgp85 Exp $";
/* Implementation of iso9660_t type */
struct _iso9660 {
@@ -1057,7 +1057,7 @@ iso9660_fs_readdir (CdIo *p_cdio, const char pathname[], bool b_mode2)
iso9660_stat_t *p_stat;
if (!p_cdio) return NULL;
- if (!psz_path) return NULL;
+ if (!pathname) return NULL;
p_env = (generic_img_private_t *) p_cdio->env;