Skip to content
Snippets Groups Projects
  1. May 11, 2013
  2. May 06, 2013
  3. Apr 27, 2013
  4. Apr 20, 2013
  5. Apr 11, 2013
  6. Apr 09, 2013
  7. Apr 04, 2013
  8. Mar 13, 2013
  9. Mar 11, 2013
  10. Mar 07, 2013
    • Daniel Stenberg's avatar
      checksrc: ban unsafe functions · 7f963a19
      Daniel Stenberg authored
      The list of unsafe functions currently consists of sprintf, vsprintf,
      strcat, strncat and gets.
      
      Subsequently, some existing code needed updating to avoid warnings on
      this.
      7f963a19
  11. Feb 20, 2013
    • Nick Zitzmann's avatar
      metalink: fix improbable crash parsing metalink filename · 80e2b3ed
      Nick Zitzmann authored
      The this_url pointer wasn't being initialized, so if strdup() would return
      null when copying the filename in a metalink file, then hilarity would
      ensue during the cleanup phase. This change was brought to you by clang,
      which noticed this and raised a warning.
      80e2b3ed
  12. Feb 15, 2013
  13. Feb 14, 2013
  14. Feb 13, 2013
  15. Feb 09, 2013
  16. Feb 06, 2013
  17. Feb 05, 2013
    • John E. Malmberg's avatar
      VMS: fix and generate the VMS build config · 25f35142
      John E. Malmberg authored
      config_h.com is a new file that generates a config.h file based on the
      curl_config.h.in file and a quick scan of the configure script.  This is
      actually a generic procedure that is shared with other VMS packages.
      
      The existing pre-built config-vms.h had over 100 entries that were not
      correct and in some cases conflicted with the build options available in
      the build_vms.com.
      
      generate_config_vms_h_curl.com is a helper procedure to the
      config_h.com.  It covers the cases that the generic config_h.com is not
      able to figure out, and accepts input from the build_vms.com procedure.
      
      build_curlbuild_h.com is a new file to generate the curlbuild.h file
      that Curl is now using when it is using a curl_config.h file.
      
      post-config-vms.h is a new file that is needed to provide VMS specific
      definitions, and most of them need to be set before the system header
      files are included.
      
      The VMS build procedure is fixed:
      
         1. Fixed to link in the correct HP ssl library.
         2. Fixed to detect if HP Kerberos is installed.
         3. Fixed to detect if HP LDAP is installed.
         4. Fixed to detect if gnv$libzshr is installed.
         5. Simplified the input parameter parsing to not use a loop.
         6. Warn that 64 bit pointer option support is not complete
            in comments.
         7. Default to IEEE floating if platform supports it so
            resulting libcurl will be compatible with other
            open source projects on VMS.
         8. Default to LARGEFILE if platform supports it.
         9. Default to enable SSL, LDAP, Kerberos, libz
            if the libraries are present.
         10. Build with exact case global symbols for libcurl.
         11. Generate linker option file needed.
         12. Compiler list option only commonly needed items.
         13. fulllist option for those who really want it.
         14. Create debug symbol file on Alpha, IA64.
      25f35142
  18. Jan 28, 2013
  19. Jan 22, 2013
  20. Jan 20, 2013
  21. Jan 16, 2013
    • Yves Arrouye's avatar
      --libcurl: fix for non-zero default options · 4ed6b07d
      Yves Arrouye authored
      If the default value for an option taking a long as its value is non
      zero, and it is set by zero by a command line option, then that command
      line option is not reflected in --libcurl's output. This is because line
      520-521 of tool_setopt.c look like:
      
      if(!lval)
          skip = TRUE;
      
      An example of a command-line option doing so is the -k option that sets
      CURLOPT_SLL_VERIFYPEER and CURLOPT_SSL_VERIFYHOST to 0L, when the
      defaults are non-zero.
      4ed6b07d
  22. Jan 09, 2013
  23. Jan 08, 2013
    • Yang Tse's avatar
      build: fix circular header inclusion with other packages · 5a053ffe
      Yang Tse authored
      This commit renames lib/setup.h to lib/curl_setup.h and
      renames lib/setup_once.h to lib/curl_setup_once.h.
      
      Removes the need and usage of a header inclusion guard foreign
      to libcurl. [1]
      
      Removes the need and presence of an alarming notice we carried
      in old setup_once.h [2]
      
      ----------------------------------------
      
      1 - lib/setup_once.h used __SETUP_ONCE_H macro as header inclusion guard
          up to commit ec691ca3 which changed this to HEADER_CURL_SETUP_ONCE_H,
          this single inclusion guard is enough to ensure that inclusion of
          lib/setup_once.h done from lib/setup.h is only done once.
      
          Additionally lib/setup.h has always used __SETUP_ONCE_H macro to
          protect inclusion of setup_once.h even after commit ec691ca3, this
          was to avoid a circular header inclusion triggered when building a
          c-ares enabled version with c-ares sources available which also has
          a setup_once.h header. Commit ec691ca3 exposes the real nature of
          __SETUP_ONCE_H usage in lib/setup.h, it is a header inclusion guard
          foreign to libcurl belonging to c-ares's setup_once.h
      
          The renaming this commit does, fixes the circular header inclusion,
          and as such removes the need and usage of a header inclusion guard
          foreign to libcurl. Macro __SETUP_ONCE_H no longer used in libcurl.
      
      2 - Due to the circular interdependency of old lib/setup_once.h and the
          c-ares setup_once.h header, old file lib/setup_once.h has carried
          back from 2006 up to now days an alarming and prominent notice about
          the need of keeping libcurl's and c-ares's setup_once.h in sync.
      
          Given that this commit fixes the circular interdependency, the need
          and presence of mentioned notice is removed.
      
          All mentioned interdependencies come back from now old days when
          the c-ares project lived inside a curl subdirectory. This commit
          removes last traces of such fact.
      5a053ffe
    • Daniel Stenberg's avatar
      curl: ignore SIGPIPE · e2bcd2ab
      Daniel Stenberg authored
      This is a work-around for bug #1180 which is really libcurl's inability
      to ignore SIGPIPE in a few cases. With this work-around at least curl
      won't suffer from it!
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1180
      Reported by: Lluís Batlle i Rossell
      e2bcd2ab
  24. Jan 06, 2013
    • Yang Tse's avatar
      Revert changes relative to lib/*.[ch] recent renaming · 4a5aa668
      Yang Tse authored
      This reverts renaming and usage of lib/*.h header files done
      28-12-2012, reverting 2 commits:
      
        f871de00... build: make use of 76 lib/*.h renamed files
        ffd8e127... build: rename 76 lib/*.h files
      
      This also reverts removal of redundant include guard (redundant thanks
      to changes in above commits) done 2-12-2013, reverting 1 commit:
      
        c087374c... curl_setup.h: remove redundant include guard
      
      This also reverts renaming and usage of lib/*.c source files done
      3-12-2013, reverting 3 commits:
      
        13606bbf... build: make use of 93 lib/*.c renamed files
        5b6e7927... build: rename 93 lib/*.c files
        7d83dfff... build: commit 13606bbf follow-up 1
      
      Start of related discussion thread:
      
        http://curl.haxx.se/mail/lib-2013-01/0012.html
      
      Asking for confirmation on pushing this revertion commit:
      
        http://curl.haxx.se/mail/lib-2013-01/0048.html
      
      Confirmation summary:
      
        http://curl.haxx.se/mail/lib-2013-01/0079.html
      
      NOTICE: The list of 2 files that have been modified by other
      intermixed commits, while renamed, and also by at least one
      of the 6 commits this one reverts follows below. These 2 files
      will exhibit a hole in history unless git's '--follow' option
      is used when viewing logs.
      
        lib/curl_imap.h
        lib/curl_smtp.h
      4a5aa668
  25. Jan 03, 2013
  26. Dec 28, 2012
Loading