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

Diff for /src/usr.bin/ssh/sshpty.c between version 1.4 and 1.4.2.1

version 1.4, 2001/12/19 07:18:56 version 1.4.2.1, 2002/06/26 15:30:39
Line 225 
Line 225 
         if (fd < 0)          if (fd < 0)
                 error("open /dev/tty failed - could not set controlling tty: %.100s",                  error("open /dev/tty failed - could not set controlling tty: %.100s",
                     strerror(errno));                      strerror(errno));
         else {          else
                 close(fd);                  close(fd);
         }  
 }  }
   
 /* Changes the window size associated with the pty. */  /* Changes the window size associated with the pty. */
Line 237 
Line 236 
         int xpixel, int ypixel)          int xpixel, int ypixel)
 {  {
         struct winsize w;          struct winsize w;
   
         w.ws_row = row;          w.ws_row = row;
         w.ws_col = col;          w.ws_col = col;
         w.ws_xpixel = xpixel;          w.ws_xpixel = xpixel;
Line 274 
Line 274 
         if (st.st_uid != pw->pw_uid || st.st_gid != gid) {          if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
                 if (chown(ttyname, pw->pw_uid, gid) < 0) {                  if (chown(ttyname, pw->pw_uid, gid) < 0) {
                         if (errno == EROFS &&                          if (errno == EROFS &&
                            (st.st_uid == pw->pw_uid || st.st_uid == 0))                              (st.st_uid == pw->pw_uid || st.st_uid == 0))
                                 error("chown(%.100s, %d, %d) failed: %.100s",                                  error("chown(%.100s, %u, %u) failed: %.100s",
                                     ttyname, pw->pw_uid, gid,                                      ttyname, (u_int)pw->pw_uid, (u_int)gid,
                                     strerror(errno));                                      strerror(errno));
                         else                          else
                                 fatal("chown(%.100s, %d, %d) failed: %.100s",                                  fatal("chown(%.100s, %u, %u) failed: %.100s",
                                     ttyname, pw->pw_uid, gid,                                      ttyname, (u_int)pw->pw_uid, (u_int)gid,
                                     strerror(errno));                                      strerror(errno));
                 }                  }
         }          }

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