summaryrefslogtreecommitdiffstats
path: root/usr.bin/newkey/newkey.c
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-04-28 12:09:33 +0000
committermarkm <markm@FreeBSD.org>2002-04-28 12:09:33 +0000
commit62123726bdd1969e167cfabb5471097dfb6be2ad (patch)
tree94495ae485b1d718cc9593489a219d7c8c95c03e /usr.bin/newkey/newkey.c
parentdf2d11edfae9c874fce802dbcc3babd6908528d7 (diff)
downloadFreeBSD-src-62123726bdd1969e167cfabb5471097dfb6be2ad.zip
FreeBSD-src-62123726bdd1969e167cfabb5471097dfb6be2ad.tar.gz
ANSIfy, VCS inclusions and some very minor style.
Diffstat (limited to 'usr.bin/newkey/newkey.c')
-rw-r--r--usr.bin/newkey/newkey.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/usr.bin/newkey/newkey.c b/usr.bin/newkey/newkey.c
index 00af889..12dc639 100644
--- a/usr.bin/newkey/newkey.c
+++ b/usr.bin/newkey/newkey.c
@@ -27,12 +27,11 @@
* 2550 Garcia Avenue
* Mountain View, California 94043
*/
+
#if !defined(lint) && defined(SCCSIDS)
#if 0
static char sccsid[] = "@(#)newkey.c 1.8 91/03/11 Copyr 1986 Sun Micro";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
#endif
/*
@@ -42,17 +41,23 @@ static const char rcsid[] =
/*
* Administrative tool to add a new user to the publickey database
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
+
#include <rpc/rpc.h>
#include <rpc/key_prot.h>
+
#ifdef YP
#include <sys/wait.h>
#include <rpcsvc/yp_prot.h>
#include <rpcsvc/ypclnt.h>
#include <netdb.h>
#endif /* YP */
+
#include <err.h>
#include <pwd.h>
#include <stdio.h>
@@ -87,9 +92,7 @@ static char *err_string();
static void usage(void);
int
-main(argc, argv)
- int argc;
- char *argv[];
+main(int argc, char *argv[])
{
char name[MAXNETNAMELEN + 1];
char public[HEXKEYBYTES + 1];
@@ -163,7 +166,7 @@ main(argc, argv)
}
static void
-usage()
+usage(void)
{
(void)fprintf(stderr, "%s\n%s\n",
"usage: newkey [-u username]",
@@ -175,10 +178,7 @@ usage()
* Set the entry in the public key file
*/
int
-setpublicmap(name, public, secret)
- char *name;
- char *public;
- char *secret;
+setpublicmap(char *name, char *public, char *secret)
{
char pkent[1024];
@@ -199,8 +199,7 @@ setpublicmap(name, public, secret)
* a success message.
*/
static char *
-err_string(code)
- int code;
+err_string(int code)
{
char *pmesg;
OpenPOWER on IntegriCloud