summaryrefslogtreecommitdiff
path: root/NetWare
diff options
context:
space:
mode:
Diffstat (limited to 'NetWare')
-rw-r--r--NetWare/nw5.c2
-rw-r--r--NetWare/nwperlhost.h2
-rw-r--r--NetWare/nwperlsys.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/NetWare/nw5.c b/NetWare/nw5.c
index 488111ce94..397d41a205 100644
--- a/NetWare/nw5.c
+++ b/NetWare/nw5.c
@@ -567,7 +567,7 @@ nw_rmdir(const char *dir)
}
DIR *
-nw_opendir(char *filename)
+nw_opendir(const char *filename)
{
char *buff = NULL;
int len = 0;
diff --git a/NetWare/nwperlhost.h b/NetWare/nwperlhost.h
index 002bc676e0..a18436e402 100644
--- a/NetWare/nwperlhost.h
+++ b/NetWare/nwperlhost.h
@@ -961,7 +961,7 @@ PerlDirClose(struct IPerlDir* piPerl, DIR *dirp)
}
DIR*
-PerlDirOpen(struct IPerlDir* piPerl, char *filename)
+PerlDirOpen(struct IPerlDir* piPerl, const char *filename)
{
return nw_opendir(filename);
}
diff --git a/NetWare/nwperlsys.h b/NetWare/nwperlsys.h
index 0d731d1fcf..5863e85751 100644
--- a/NetWare/nwperlsys.h
+++ b/NetWare/nwperlsys.h
@@ -184,7 +184,7 @@ PerlDirClose(struct IPerlDir* piPerl, DIR *dirp)
}
DIR*
-PerlDirOpen(struct IPerlDir* piPerl, char *filename)
+PerlDirOpen(struct IPerlDir* piPerl, const char *filename)
{
return nw_opendir(filename);
}