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

Diff for /src/usr.bin/cu/command.c between version 1.14 and 1.15

version 1.14, 2015/10/05 17:53:56 version 1.15, 2015/10/05 23:15:31
Line 51 
Line 51 
                 return;                  return;
   
         restore_termios();          restore_termios();
           set_blocking(line_fd, 1);
   
         switch (pid = fork()) {          switch (pid = fork()) {
         case -1:          case -1:
Line 81 
Line 82 
                 break;                  break;
         }          }
   
           set_blocking(line_fd, 0);
         set_termios();          set_termios();
 }  }
   
Line 102 
Line 104 
                 return;                  return;
   
         restore_termios();          restore_termios();
           set_blocking(line_fd, 1);
   
         switch (pid = fork()) {          switch (pid = fork()) {
         case -1:          case -1:
Line 129 
Line 132 
                 break;                  break;
         }          }
   
           set_blocking(line_fd, 0);
         set_termios();          set_termios();
 }  }
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15