Skip to content
  1. Jan 04, 2015
  2. Jan 03, 2015
  3. Jan 02, 2015
  4. Jan 01, 2015
  5. Dec 31, 2014
  6. Dec 30, 2014
  7. Dec 29, 2014
  8. Dec 28, 2014
    • 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