summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-08-28 15:35:23 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-08-28 23:35:12 +0200
commit6e18568ba386ec82e422d238b4976673a8df2524 (patch)
treeee191fa7d794f0a93bb1fc8e2fc97ca78acff314
parent5fcad1c1c6b5301870b2a21f070e86f1a797b624 (diff)
downloadcurl-6e18568ba386ec82e422d238b4976673a8df2524.tar.gz
easyoptions: provide debug function when DEBUGBUILD
... not CURLDEBUG as they're not always set in conjunction. Follow-up to 6ebe63fac23f38df Fixes #5877 Closes #5878
-rw-r--r--lib/easyoptions.c2
-rw-r--r--lib/easyoptions.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/easyoptions.c b/lib/easyoptions.c
index 586abfe52..3294c1d0b 100644
--- a/lib/easyoptions.c
+++ b/lib/easyoptions.c
@@ -334,7 +334,7 @@ struct curl_easyoption Curl_easyopts[] = {
{NULL, 0, 0, 0} /* end of table */
};
-#ifdef CURLDEBUG
+#ifdef DEBUGBUILD
/*
* Curl_easyopts_check() is a debug-only function that returns non-zero
* if this source file is not in sync with the options listed in curl/curl.h
diff --git a/lib/easyoptions.h b/lib/easyoptions.h
index 4b681a47e..cd8b4100d 100644
--- a/lib/easyoptions.h
+++ b/lib/easyoptions.h
@@ -29,7 +29,7 @@
/* generated table with all easy options */
extern struct curl_easyoption Curl_easyopts[];
-#ifdef CURLDEBUG
+#ifdef DEBUGBUILD
int Curl_easyopts_check(void);
#endif
#endif