Signed-off-by: Ferenc Wagner <wferi at niif.hu>
---
tftpd/tftpd.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c
index 1f5d9d6..ff39c85 100644
--- a/tftpd/tftpd.c
+++ b/tftpd/tftpd.c
@@ -364,7 +364,7 @@ int main(int argc, char **argv)
srand(time(NULL) ^ getpid());
while ((c = getopt_long(argc, argv, short_options, long_options, NULL))
- != -1)
+ != -1)
switch (c) {
case '4':
ai_fam = AF_INET;
@@ -467,9 +467,9 @@ int main(int argc, char **argv)
case 'v':
verbosity++;
break;
- case OPT_VERBOSITY:
- verbosity = atoi(optarg);
- break;
+ case OPT_VERBOSITY:
+ verbosity = atoi(optarg);
+ break;
case 'V':
/* Print configuration to stdout and exit */
printf("%s\n", TFTPD_CONFIG_STR);
--
1.5.6.5