summaryrefslogtreecommitdiff
path: root/lib/libstand/cd9660.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-09-18 22:58:01 +0000
committerMike Smith <msmith@FreeBSD.org>1998-09-18 22:58:01 +0000
commit4ce36a791b0c673955d80c21d96aaffa571b16cf (patch)
tree9b841d1972ed33280817c708c6618668087a96ae /lib/libstand/cd9660.c
parent0532933e608bb8c33b8f5c42e65c1153c9f46012 (diff)
Notes
Diffstat (limited to 'lib/libstand/cd9660.c')
-rw-r--r--lib/libstand/cd9660.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libstand/cd9660.c b/lib/libstand/cd9660.c
index 5d3d85acc844..0930582b7926 100644
--- a/lib/libstand/cd9660.c
+++ b/lib/libstand/cd9660.c
@@ -43,7 +43,7 @@
#include "stand.h"
-static int cd9660_open(char *path, struct open_file *f);
+static int cd9660_open(const char *path, struct open_file *f);
static int cd9660_close(struct open_file *f);
static int cd9660_read(struct open_file *f, void *buf, size_t size, size_t *resid);
static int cd9660_write(struct open_file *f, void *buf, size_t size, size_t *resid);
@@ -91,7 +91,7 @@ isonum_732(p)
static int
pnmatch(path, pp)
- char *path;
+ const char *path;
struct ptable_ent *pp;
{
char *cp;
@@ -110,7 +110,7 @@ pnmatch(path, pp)
static int
dirmatch(path, dp)
- char *path;
+ const char *path;
struct iso_directory_record *dp;
{
char *cp;
@@ -148,7 +148,7 @@ dirmatch(path, dp)
static int
cd9660_open(path, f)
- char *path;
+ const char *path;
struct open_file *f;
{
struct file *fp = 0;