1. 04 Jan, 2015 11 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 3 commits
    • Steve Holme's avatar
      vtls: Use '(void) arg' for unused parameters · e9d0c7a6
      Steve Holme authored
      Prefer void for unused parameters, rather than assigning an argument to
      itself as a) unintelligent compilers won't optimize it out, b) it can't
      be used for const parameters, c) it will cause compilation warnings for
      clang with -Wself-assign and d) is inconsistent with other areas of the
      curl source code.
      e9d0c7a6
    • Steve Holme's avatar
      smb.c: Fixed compilation warning · 56603e27
      Steve Holme authored
      smb.c:586: warning: conversion to 'short unsigned int' from 'int' may
                 alter its value
      56603e27
    • Bill Nagel's avatar
      smb: Use the connection's upload buffer · 89cce1e4
      Bill Nagel authored
      Use the connection's upload buffer instead of allocating our own send
      buffer.
      89cce1e4