diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-23 10:37:44 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-23 11:12:03 +0000 |
commit | 24e22e1078f5c75927f00153ace4a296065dd738 (patch) | |
tree | 64e4ec37d7fdeac2393e1c2e3841f2a9a4fdecf9 /src/tool_hugehelp.h | |
parent | c10bf9bb36eb01fb5f888d923871b6ffbc432da7 (diff) | |
download | curl-24e22e1078f5c75927f00153ace4a296065dd738.tar.gz |
tool_getparam: Moved hugehelp() call into operate()
Diffstat (limited to 'src/tool_hugehelp.h')
-rw-r--r-- | src/tool_hugehelp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tool_hugehelp.h b/src/tool_hugehelp.h index 28d44dfde..a7ae784e4 100644 --- a/src/tool_hugehelp.h +++ b/src/tool_hugehelp.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -23,6 +23,10 @@ ***************************************************************************/ #include "tool_setup.h" +#ifdef USE_MANUAL void hugehelp(void); +#else +#define hugehelp() Curl_nop_stmt +#endif #endif /* HEADER_CURL_TOOL_HUGEHELP_H */ |