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

Diff for /src/usr.bin/ssh/packet.c between version 1.91 and 1.92

version 1.91, 2002/03/18 17:16:38 version 1.92, 2002/03/19 10:49:35
Line 173 
Line 173 
         return 1;          return 1;
 }  }
   
 /*  /*
  * Exports an IV from the CipherContext required to export the key   * Exports an IV from the CipherContext required to export the key
  * state back from the unprivileged child to the privileged parent   * state back from the unprivileged child to the privileged parent
  * process.   * process.
Line 196 
Line 196 
 packet_get_keycontext(int mode, u_char *dat)  packet_get_keycontext(int mode, u_char *dat)
 {  {
         CipherContext *cc;          CipherContext *cc;
   
         if (mode == MODE_OUT)          if (mode == MODE_OUT)
                 cc = &send_context;                  cc = &send_context;
         else          else
Line 209 
Line 209 
 packet_set_keycontext(int mode, u_char *dat)  packet_set_keycontext(int mode, u_char *dat)
 {  {
         CipherContext *cc;          CipherContext *cc;
   
         if (mode == MODE_OUT)          if (mode == MODE_OUT)
                 cc = &send_context;                  cc = &send_context;
         else          else

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92