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

Diff for /src/usr.bin/ssh/authfd.c between version 1.27 and 1.28

version 1.27, 2000/09/07 20:27:49 version 1.28, 2000/09/21 11:07:50
Line 51 
Line 51 
 #include "authfd.h"  #include "authfd.h"
 #include "kex.h"  #include "kex.h"
 #include "dsa.h"  #include "dsa.h"
   #include "compat.h"
   
 /* helper */  /* helper */
 int     decode_reply(int type);  int     decode_reply(int type);
Line 360 
Line 361 
     unsigned char **sigp, int *lenp,      unsigned char **sigp, int *lenp,
     unsigned char *data, int datalen)      unsigned char *data, int datalen)
 {  {
           extern int datafellows;
         Buffer msg;          Buffer msg;
         unsigned char *blob;          unsigned char *blob;
         unsigned int blen;          unsigned int blen;
         int type;          int type, flags = 0;
         int ret = -1;          int ret = -1;
   
         if (dsa_make_key_blob(key, &blob, &blen) == 0)          if (dsa_make_key_blob(key, &blob, &blen) == 0)
                 return -1;                  return -1;
   
           if (datafellows & SSH_BUG_SIGBLOB)
                   flags = SSH_AGENT_OLD_SIGNATURE;
   
         buffer_init(&msg);          buffer_init(&msg);
         buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);          buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
         buffer_put_string(&msg, blob, blen);          buffer_put_string(&msg, blob, blen);
         buffer_put_string(&msg, data, datalen);          buffer_put_string(&msg, data, datalen);
         buffer_put_int(&msg, 0);                                /* flags, unused */          buffer_put_int(&msg, flags);
         xfree(blob);          xfree(blob);
   
         if (ssh_request_reply(auth, &msg, &msg) == 0) {          if (ssh_request_reply(auth, &msg, &msg) == 0) {

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28