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

Diff for /src/usr.bin/ssh/Attic/bufaux.c between version 1.35.2.2 and 1.40

version 1.35.2.2, 2006/02/03 02:53:44 version 1.40, 2006/03/25 18:56:54
Line 1 
Line 1 
   /* $OpenBSD$ */
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Line 37 
Line 38 
  */   */
   
 #include "includes.h"  #include "includes.h"
 RCSID("$OpenBSD$");  
   
 #include <openssl/bn.h>  #include <openssl/bn.h>
 #include "bufaux.h"  #include "bufaux.h"
Line 71 
Line 71 
         PUT_16BIT(msg, bits);          PUT_16BIT(msg, bits);
         buffer_append(buffer, msg, 2);          buffer_append(buffer, msg, 2);
         /* Store the binary data. */          /* Store the binary data. */
         buffer_append(buffer, (char *)buf, oi);          buffer_append(buffer, buf, oi);
   
         memset(buf, 0, bin_size);          memset(buf, 0, bin_size);
         xfree(buf);          xfree(buf);

Legend:
Removed from v.1.35.2.2  
changed lines
  Added in v.1.40