ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/getpath.c
(Generate patch)

Comparing ray/src/common/getpath.c (file contents):
Revision 2.4 by greg, Mon Jul 13 16:33:19 1992 UTC vs.
Revision 2.7 by greg, Mon Sep 21 11:59:42 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 8 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   *  getpath.c - function to search for file in a list of directories
9   */
10  
11 < #define  NULL           0
11 > #include  "standard.h"
12  
13 < #ifndef  NIX
13 > #include  "paths.h"
14 >
15 > #ifndef  NIX
16   #include  <pwd.h>
17 + extern struct passwd  *getpwnam();
18   #endif
19  
17 #ifndef DIRSEP
18 #define DIRSEP          '/'
19 #endif
20 #ifndef PATHSEP
21 #define PATHSEP         ':'
22 #endif
20  
24 extern char  *strcpy(), *strcat(), *getenv();
25 extern struct passwd  *getpwnam();
26
27
21   char *
22   getpath(fname, searchpath, mode)        /* expand fname, return full path */
23   register char  *fname;
24   register char  *searchpath;
25   int  mode;
26   {
27 < #ifndef  NIX
27 > #ifndef  NIX
28          struct passwd  *pwent;
29   #endif
30 <        static char  pname[256];
30 >        static char  pname[MAXPATH];
31          register char  *cp;
32  
33          if (fname == NULL)
34                  return(NULL);
35  
36          switch (*fname) {
37 <        case DIRSEP:                            /* relative to root */
37 >        CASEDIRSEP:                             /* relative to root */
38          case '.':                               /* relative to cwd */
39                  strcpy(pname, fname);
40                  return(pname);
41   #ifndef NIX
42          case '~':                               /* relative to home directory */
43                  fname++;
44 <                if (*fname == '\0' || *fname == DIRSEP) {       /* ours */
44 >                if (*fname == '\0' || ISDIRSEP(*fname)) {       /* ours */
45                          if ((cp = getenv("HOME")) == NULL)
46                                  return(NULL);
47                          strcpy(pname, cp);
# Line 58 | Line 51 | int  mode;
51                  cp = pname;                                     /* user */
52                  do
53                          *cp++ = *fname++;
54 <                while (*fname && *fname != DIRSEP);
54 >                while (*fname && !ISDIRSEP(*fname));
55                  *cp = '\0';
56                  if ((pwent = getpwnam(pname)) == NULL)
57                          return(NULL);
# Line 77 | Line 70 | int  mode;
70                  cp = pname;
71                  while (*searchpath && (*cp = *searchpath++) != PATHSEP)
72                          cp++;
73 <                if (cp > pname && cp[-1] != DIRSEP)
73 >                if (cp > pname && !ISDIRSEP(cp[-1]))
74                          *cp++ = DIRSEP;
75                  strcpy(cp, fname);
76                  if (access(pname, mode) == 0)           /* file accessable? */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines