forked from mirrors/tftp-hpa-google
Formatting cleanup
This commit is contained in:
parent
cd22c6ea31
commit
9f83475779
1 changed files with 6 additions and 9 deletions
|
@ -1,5 +1,3 @@
|
||||||
/* $OpenBSD: tftpd.c,v 1.13 1999/06/23 17:01:36 deraadt Exp $ */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1983 Regents of the University of California.
|
* Copyright (c) 1983 Regents of the University of California.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -120,13 +118,12 @@ struct options {
|
||||||
const char *o_opt;
|
const char *o_opt;
|
||||||
int (*o_fnc) (char *, char **);
|
int (*o_fnc) (char *, char **);
|
||||||
} options[] = {
|
} options[] = {
|
||||||
{
|
{"blksize", set_blksize},
|
||||||
"blksize", set_blksize}, {
|
{"blksize2", set_blksize2},
|
||||||
"blksize2", set_blksize2}, {
|
{"tsize", set_tsize},
|
||||||
"tsize", set_tsize}, {
|
{"timeout", set_timeout},
|
||||||
"timeout", set_timeout}, {
|
{"utimeout", set_utimeout},
|
||||||
"utimeout", set_utimeout}, {
|
{NULL, NULL}
|
||||||
NULL, NULL}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Simple handler for SIGHUP */
|
/* Simple handler for SIGHUP */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue