fixed a missing variable declaration needed by strtok_r on non-threaded builds

This commit is contained in:
Evan Hunt
2018-04-13 10:14:52 -07:00
parent e10903c785
commit 46fd0b62f8

View File

@@ -702,9 +702,7 @@ modrdataset(struct dlz_example_data *state, const char *name,
char *full_name, *dclass, *type, *data, *ttlstr, *buf;
char absolute[1024];
isc_result_t result;
#if defined(WIN32) || defined(_REENTRANT)
char *saveptr = NULL;
#endif
buf = strdup(rdatastr);
if (buf == NULL)