[BACK]Return to getspwuid.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/getspwuid.c between version 1.3 and 1.4

version 1.3, 2000/06/05 14:01:15 version 1.4, 2000/11/21 17:58:44
Line 110 
Line 110 
     if ((pw_shell = getenv("SHELL")) == NULL)      if ((pw_shell = getenv("SHELL")) == NULL)
         pw_shell = pw->pw_shell;          pw_shell = pw->pw_shell;
   
 #ifdef _PATH_BSHELL  
     /* empty string "" means bourne shell */      /* empty string "" means bourne shell */
     if (*pw_shell == '\0')      if (*pw_shell == '\0')
         pw_shell = _PATH_BSHELL;          pw_shell = _PATH_BSHELL;
 #endif /* _PATH_BSHELL */  
   
     return(pw_shell);      return(pw_shell);
 }  }
Line 207 
Line 205 
     (void) memcpy(local_pw, pw, sizeof(struct passwd));      (void) memcpy(local_pw, pw, sizeof(struct passwd));
     local_pw->pw_name = estrdup(pw->pw_name);      local_pw->pw_name = estrdup(pw->pw_name);
     local_pw->pw_dir = estrdup(pw->pw_dir);      local_pw->pw_dir = estrdup(pw->pw_dir);
       local_pw->pw_gecos = estrdup(pw->pw_gecos);
   #ifdef HAVE_LOGIN_CAP_H
       local_pw->pw_class = estrdup(pw->pw_class);
   #endif
   
     /* pw_shell is a special case since we overide with $SHELL */      /* pw_shell is a special case since we overide with $SHELL */
     local_pw->pw_shell = estrdup(sudo_getshell(pw));      local_pw->pw_shell = estrdup(sudo_getshell(pw));

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4