Commit c76d9395 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Christian Krause fixed a build failure when building with gss support

enabled and FTP disabled.
parent 3c4b69f9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,9 @@
                                  Changelog

Daniel Stenberg (16 Nov 2008)
- Christian Krause fixed a build failure when building with gss support
  enabled and FTP disabled.

- Added check for NULL returns from strdup() in src/main.c and lib/formdata.c
  - reported by Jim Meyering also prevent buffer overflow on MSDOS when you do
  for example -O on a url with a file name part longer than PATH_MAX letters
+2 −1
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ This release includes the following changes:

This release includes the following bugfixes:

 o build failure when disabling FTP but enabling GSS
 o fixed several calls to memory functions that didn't check return codes
 o memory leak for SSL connects with libcurl/NSS when CURLOPT_ISSUERCERT was
   used
@@ -28,6 +29,6 @@ Other curl-related news:
This release would not have looked like this without help, code, reports and
advice from friends like these:

 Yang Tse, Daniel Fandrich, Jim Meyering
 Yang Tse, Daniel Fandrich, Jim Meyering, Christian Krause

        Thanks! (and sorry if I forgot to mention someone)
+2 −1
Original line number Diff line number Diff line
@@ -47,7 +47,8 @@
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
#include <curl/mprintf.h>

#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
/* the krb4 functions only exists for FTP and if krb4 or gssapi is defined */
#if !defined(CURL_DISABLE_FTP) && (defined(HAVE_KRB4) || defined(HAVE_GSSAPI))
#include "krb4.h"
#else
#define Curl_sec_send(a,b,c,d) -1