This commit is contained in:
Bob Halley
1999-10-10 17:13:29 +00:00
parent 82a083ceb7
commit 82e9817a18
3 changed files with 4 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THE SOFTWARE.
*/
/* $Id: dnssec-keygen.c,v 1.3 1999/10/06 20:07:24 tale Exp $ */
/* $Id: dnssec-keygen.c,v 1.4 1999/10/10 17:13:29 halley Exp $ */
#include <config.h>
@@ -46,8 +46,6 @@ main(int argc, char **argv) {
isc_mem_t *mctx = NULL;
int ch, rsa_exp = 0, generator = 0, param = 0;
int protocol = -1, size = -1;
extern char *optarg;
extern int optind;
dst_result_t ret;
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);

View File

@@ -890,7 +890,8 @@ main(int argc, char *argv[]) {
usec = isc_time_microdiff(&finish, &start);
printf("elapsed time: %lu.%06lu seconds\n",
usec / 1000000, usec % 1000000);
(unsigned long)(usec / 1000000),
(unsigned long)(usec % 1000000));
}
unload_all();

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THE SOFTWARE.
*/
/* $Id: keygen.c,v 1.3 1999/10/06 20:07:24 tale Exp $ */
/* $Id: keygen.c,v 1.4 1999/10/10 17:13:29 halley Exp $ */
#include <config.h>
@@ -46,8 +46,6 @@ main(int argc, char **argv) {
isc_mem_t *mctx = NULL;
int ch, rsa_exp = 0, generator = 0, param = 0;
int protocol = -1, size = -1;
extern char *optarg;
extern int optind;
dst_result_t ret;
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);