1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* curl-shim.h, curl-shim.c, gpgkeys_hkp.c: Rename curl_escape() to

curl_easy_escape() to match cURL.
This commit is contained in:
David Shaw 2007-01-16 18:12:43 +00:00
parent 5af8d68211
commit b8bd7b6186
4 changed files with 12 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/* curl-shim.h
* Copyright (C) 2005, 2006 Free Software Foundation, Inc.
* Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
*
* This file is part of GNUPG.
*
@ -85,7 +85,7 @@ CURL *curl_easy_init(void);
CURLcode curl_easy_setopt(CURL *curl,CURLoption option,...);
CURLcode curl_easy_perform(CURL *curl);
void curl_easy_cleanup(CURL *curl);
char *curl_escape(char *str,int len);
char *curl_easy_escape(CURL *curl,char *str,int len);
void curl_free(char *ptr);
#define curl_version() "GnuPG curl-shim "VERSION