Formatting cleanup

This commit is contained in:
H. Peter Anvin 2008-07-08 17:26:18 -04:00
parent cd22c6ea31
commit 9f83475779

View file

@ -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 */