1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-22 07:29:01 +00:00

Fixed indentation.

This commit is contained in:
henri
2013-05-08 18:08:48 +00:00
parent 4862bbcbb9
commit 1da1fce331
3 changed files with 16 additions and 16 deletions

View File

@@ -43,10 +43,10 @@ static int basic_udata(void *tdata) {
} }
const struct test_case TestPoolUserData = { const struct test_case TestPoolUserData = {
.t_name = "nsock pool user data", .t_name = "nsock pool user data",
.t_setup = basic_setup, .t_setup = basic_setup,
.t_run = basic_udata, .t_run = basic_udata,
.t_teardown = basic_teardown .t_teardown = basic_teardown
}; };

View File

@@ -164,15 +164,15 @@ static int log_check_err_levels(void *tdata) {
const struct test_case TestLogLevels = { const struct test_case TestLogLevels = {
.t_name = "set standard log levels", .t_name = "set standard log levels",
.t_setup = log_setup, .t_setup = log_setup,
.t_run = log_check_std_levels, .t_run = log_check_std_levels,
.t_teardown = log_teardown .t_teardown = log_teardown
}; };
const struct test_case TestErrLevels = { const struct test_case TestErrLevels = {
.t_name = "check error log levels", .t_name = "check error log levels",
.t_setup = log_setup, .t_setup = log_setup,
.t_run = log_check_err_levels, .t_run = log_check_err_levels,
.t_teardown = log_teardown .t_teardown = log_teardown
}; };

View File

@@ -121,9 +121,9 @@ static int timer_totalmess(void *tdata) {
} }
const struct test_case TestTimer = { const struct test_case TestTimer = {
.t_name = "test timer operations", .t_name = "test timer operations",
.t_setup = timer_setup, .t_setup = timer_setup,
.t_run = timer_totalmess, .t_run = timer_totalmess,
.t_teardown = timer_teardown .t_teardown = timer_teardown
}; };