Common subdirectories: ssh-1.2.26/gmp-2.0.2-ssh-2 and ssh-1.2.26.1/gmp-2.0.2-ssh-2 diff -u ssh-1.2.26/sshd.c ssh-1.2.26.1/sshd.c --- ssh-1.2.26/sshd.c Wed Jul 8 18:40:38 1998 +++ ssh-1.2.26.1/sshd.c Fri Jan 15 00:21:22 1999 @@ -3673,17 +3673,8 @@ */ int sgi_project_setup(char *username) { - int err; - int naccts; - projid_t pbuf; + int err = 0; - /* Find default project for a particular user */ - if ((naccts = getprojuser(username, &pbuf, 1)) < 0) - { - debug("System call getprojuser failed"); - return(-1); - } - /* Create a new array session and moves the current process from its original array session to the new one. */ if (newarraysess() < 0) @@ -3694,8 +3685,7 @@ /* Change the project ID for the array session. */ /* Must be changed after the new array session has been created. */ - if (naccts) - err = setprid(pbuf.proj_id); + err = setprid(getdfltprojuser(username)); if (err != 0) { Common subdirectories: ssh-1.2.26/zlib-1.0.4 and ssh-1.2.26.1/zlib-1.0.4