1. 04 Jan, 2015 2 commits
  2. 03 Jan, 2015 4 commits
  3. 02 Jan, 2015 5 commits
  4. 01 Jan, 2015 6 commits
  5. 31 Dec, 2014 11 commits
  6. 30 Dec, 2014 5 commits
  7. 29 Dec, 2014 1 commit
  8. 28 Dec, 2014 6 commits
    • Steve Holme's avatar
      darwinssl: Fixed compilation warning · cfc86386
      Steve Holme authored
      vtls.c:683:43: warning: unused parameter 'data'
      cfc86386
    • Steve Holme's avatar
      sockfilt.c: Fixed compilation warnings · 40887217
      Steve Holme authored
      sockfilt.c:288: warning: conversion to 'DWORD' from 'size_t' may alter
                      its value
      sockfilt.c:291: warning: conversion to 'DWORD' from 'size_t' may alter
                      its value
      sockfilt.c:323: warning: conversion to 'DWORD' from 'size_t' may alter
                      its value
      sockfilt.c:326: warning: conversion to 'DWORD' from 'size_t' may alter
                      its value
      40887217
    • Steve Holme's avatar
      test1509: Fixed compilation warning · d8273e19
      Steve Holme authored
      lib1509.c:93:18: warning: conversion to 'long int' from 'size_t' may
                       alter its value
      d8273e19
    • Steve Holme's avatar
      test556: Fixed compilation warning · 8f401453
      Steve Holme authored
      lib556.c:90: warning: conversion to 'unsigned int' from 'size_t' may
                   alter its value
      8f401453
    • Steve Holme's avatar
    • Steve Holme's avatar
      vtls: Fixed compilation warning and an ignored return code · 037cd0d9
      Steve Holme authored
      curl_schannel.h:123: warning: right-hand operand of comma expression
                           has no effect
      
      Some instances of the curlssl_close_all() function were declared with a
      void return type whilst others as int. The schannel version returned
      CURLE_NOT_BUILT_IN and others simply returned zero, but in all cases the
      return code was ignored by the calling function Curl_ssl_close_all().
      
      For the time being and to keep the internal API consistent, changed all
      declarations to use a void return type.
      
      To reduce code we might want to consider removing the unimplemented
      versions and use a void #define like schannel does.
      037cd0d9