security.c: Remove out_buffer as it was never written into.
authorJulien Chaffraix <julien.chaffraix@gmail.com>
Fri, 10 Sep 2010 07:26:37 +0000 (00:26 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 22 Sep 2010 21:34:36 +0000 (23:34 +0200)
lib/security.c
lib/urldata.h

index c79128a..3a3f0e0 100644 (file)
@@ -291,10 +291,6 @@ int
 Curl_sec_fflush_fd(struct connectdata *conn, int fd)
 {
   if(conn->data_prot != prot_clear) {
-    if(conn->out_buffer.index > 0){
-      sec_write(conn, fd, conn->out_buffer.data, conn->out_buffer.index);
-      conn->out_buffer.index = 0;
-    }
     sec_send(conn, fd, NULL, 0);
   }
   return 0;
index 9369dd8..4d60591 100644 (file)
@@ -806,7 +806,7 @@ struct connectdata {
   enum protection_level data_prot;
   enum protection_level request_data_prot;
   size_t buffer_size;
-  struct krb4buffer in_buffer, out_buffer;
+  struct krb4buffer in_buffer;
   void *app_data;
   const struct Curl_sec_client_mech *mech;
   struct sockaddr_in local_addr;