--- ray/src/common/getpath.c 1992/07/13 16:33:19 2.4 +++ ray/src/common/getpath.c 2003/02/25 02:47:21 2.10 @@ -1,28 +1,22 @@ -/* Copyright (c) 1991 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: getpath.c,v 2.10 2003/02/25 02:47:21 greg Exp $"; #endif - /* * getpath.c - function to search for file in a list of directories + * + * External symbols declared in standard.h */ -#define NULL 0 +#include "copyright.h" -#ifndef NIX -#include -#endif +#include "standard.h" -#ifndef DIRSEP -#define DIRSEP '/' -#endif -#ifndef PATHSEP -#define PATHSEP ':' -#endif +#include "paths.h" -extern char *strcpy(), *strcat(), *getenv(); +#ifndef NIX +#include extern struct passwd *getpwnam(); +#endif char * @@ -31,42 +25,45 @@ register char *fname; register char *searchpath; int mode; { -#ifndef NIX +#ifndef NIX struct passwd *pwent; #endif - static char pname[256]; + static char pname[MAXPATH]; register char *cp; if (fname == NULL) return(NULL); + pname[0] = '\0'; /* check for full specification */ switch (*fname) { - case DIRSEP: /* relative to root */ + CASEDIRSEP: /* relative to root */ case '.': /* relative to cwd */ strcpy(pname, fname); - return(pname); + break; #ifndef NIX case '~': /* relative to home directory */ fname++; - if (*fname == '\0' || *fname == DIRSEP) { /* ours */ + if (*fname == '\0' || ISDIRSEP(*fname)) { /* ours */ if ((cp = getenv("HOME")) == NULL) return(NULL); strcpy(pname, cp); strcat(pname, fname); - return(pname); + break; } cp = pname; /* user */ do *cp++ = *fname++; - while (*fname && *fname != DIRSEP); + while (*fname && !ISDIRSEP(*fname)); *cp = '\0'; if ((pwent = getpwnam(pname)) == NULL) return(NULL); strcpy(pname, pwent->pw_dir); strcat(pname, fname); - return(pname); + break; #endif } + if (pname[0]) /* got it, check access if search requested */ + return(searchpath==NULL||access(pname,mode)==0 ? pname : NULL); if (searchpath == NULL) { /* don't search */ strcpy(pname, fname); @@ -77,7 +74,7 @@ int mode; cp = pname; while (*searchpath && (*cp = *searchpath++) != PATHSEP) cp++; - if (cp > pname && cp[-1] != DIRSEP) + if (cp > pname && !ISDIRSEP(cp[-1])) *cp++ = DIRSEP; strcpy(cp, fname); if (access(pname, mode) == 0) /* file accessable? */