Skip to content

Commit

Permalink
added some missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoertzen-sb committed Dec 14, 2023
1 parent ae6e7a8 commit ba12a73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/named/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1537,11 +1537,11 @@ main(int argc, char *argv[]) {

named_os_init(program_name);

printf("=============================================================")
printf("=============================================================");
printf("parsing...");
parse_command_line(argc, argv);
printf("parsing...done\n");
printf("=============================================================")
printf("=============================================================");

/*
* Since providers may be loaded due to command line
Expand Down Expand Up @@ -1573,9 +1573,9 @@ main(int argc, char *argv[]) {
ERR_clear_error();
named_main_earlyfatal("Failed to load default provider");
}
printf("=============================================================\n")
printf("=============================================================\n");
printf("loaded providers\n");
printf("=============================================================\n")
printf("=============================================================\n");
#endif /* if OPENSSL_VERSION_NUMER >= 0x30200000L && OPENSSL_API_LEVEL >= \
30200 */
#ifdef ENABLE_AFL
Expand Down

0 comments on commit ba12a73

Please sign in to comment.