Fix for UNICOS CC: first argument to readlink must not be const, or we

get an error.
This commit is contained in:
Martin Pool
2001-08-06 12:16:20 +00:00
parent fc990e81cb
commit c88ca682ef

View File

@@ -149,8 +149,7 @@ int readlink_stat(const char *Path, STRUCT_STAT *Buffer, char *Linkbuf)
return -1;
}
if (S_ISLNK(Buffer->st_mode)) {
int l;
if ((l = readlink(Path,Linkbuf,MAXPATHLEN-1)) == -1) {
if (readlink((char *) Path, Linkbuf, MAXPATHLEN-1) == -1) {
return -1;
}
Linkbuf[l] = 0;