X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fsptps_keypair.c;h=d762724f8fc222ab8d99c4517cfbe17d51b58242;hb=df716df33af8e9a5b93d573a023ecd7fc24d9a03;hp=51540aa5f9655b180aea35b258f6bd9d83e89ace;hpb=d72a450975bed625e058eb857410f0d78caee2d1;p=tinc diff --git a/src/sptps_keypair.c b/src/sptps_keypair.c index 51540aa5..d762724f 100644 --- a/src/sptps_keypair.c +++ b/src/sptps_keypair.c @@ -1,6 +1,6 @@ /* sptps_test.c -- Simple Peer-to-Peer Security test program - Copyright (C) 2011-2013 Guus Sliepen , + Copyright (C) 2011-2022 Guus Sliepen , This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,11 +23,10 @@ #include "crypto.h" #include "ecdsagen.h" -#include "utils.h" +#include "logger.h" +#include "names.h" -static char *program_name; - -void logger(int level, int priority, const char *format, ...) { +void logger(debug_t level, int priority, const char *format, ...) { (void)level; (void)priority; va_list ap; @@ -39,7 +38,7 @@ void logger(int level, int priority, const char *format, ...) { fputc('\n', stderr); } -static void usage() { +static void usage(void) { fprintf(stderr, "Usage: %s [options] private_key_file public_key_file\n\n", program_name); fprintf(stderr, "Valid options are:\n" " --help Display this help and exit.\n"