diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 13:42:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 13:42:23 +0000 |
commit | b2c290e40e73a8c2b7a0a15a967c1abe4d603382 (patch) | |
tree | 049b727148a57b1a990c3c90a06223cd35a8832d /lib/if2ip.h | |
parent | bc5b2fa12c6e2e4f0f41623126311927bf040ead (diff) | |
download | curl-b2c290e40e73a8c2b7a0a15a967c1abe4d603382.tar.gz |
Gisle-fix: constified the 'interface' argument.
Diffstat (limited to 'lib/if2ip.h')
-rw-r--r-- | lib/if2ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if2ip.h b/lib/if2ip.h index f2c3a541f..30a6540a4 100644 --- a/lib/if2ip.h +++ b/lib/if2ip.h @@ -26,7 +26,7 @@ #if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \ !defined(__riscos__) && !defined(__INTERIX) -extern char *Curl_if2ip(char *interface, char *buf, int buf_size); +extern char *Curl_if2ip(const char *interface, char *buf, int buf_size); #else #define Curl_if2ip(a,b,c) NULL #endif |