mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-13 22:22:08 -04:00
format/arg mismatch solaris
This commit is contained in:
parent
168903d09b
commit
0ddcd0c0ce
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.575 2010/07/19 06:13:28 marka Exp $ */
|
||||
/* $Id: server.c,v 1.576 2010/07/20 04:46:49 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -7007,8 +7007,8 @@ ns_server_del_zone(ns_server_t *server, char *args) {
|
|||
size_t n;
|
||||
|
||||
/* Create a temporary file */
|
||||
CHECK(isc_string_printf(buf, 1023, "%s.%d", filename,
|
||||
getpid()));
|
||||
CHECK(isc_string_printf(buf, 1023, "%s.%ld", filename,
|
||||
(long)getpid()));
|
||||
if (!(tmpname = isc_mem_strdup(server->mctx, buf))) {
|
||||
result = ISC_R_NOMEMORY;
|
||||
goto cleanup;
|
||||
|
|
|
|||
Loading…
Reference in a new issue