[asterisk-commits] mmichelson: branch group/dns r433110 - /team/group/dns/res/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Mar 18 18:03:15 CDT 2015
Author: mmichelson
Date: Wed Mar 18 18:03:10 2015
New Revision: 433110
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=433110
Log:
Remove trailing whitespace
Modified:
team/group/dns/res/res_resolver_unbound.c
Modified: team/group/dns/res/res_resolver_unbound.c
URL: http://svnview.digium.com/svn/asterisk/team/group/dns/res/res_resolver_unbound.c?view=diff&rev=433110&r1=433109&r2=433110
==============================================================================
--- team/group/dns/res/res_resolver_unbound.c (original)
+++ team/group/dns/res/res_resolver_unbound.c Wed Mar 18 18:03:10 2015
@@ -539,7 +539,7 @@
RAII_VAR(struct ast_dns_result *, result, NULL, ast_dns_result_free);
const struct ast_dns_record *record;
int i;
-
+
/* Start by making sure no records have been visited */
for (i = 0; i < num_records; ++i) {
records[i].visited = 0;
@@ -559,7 +559,7 @@
for (record = ast_dns_result_get_records(result); record; record = ast_dns_record_get_next(record)) {
int match = 0;
-
+
/* Let's make sure this matches one of our known records */
for (i = 0; i < num_records; ++i) {
if (ast_dns_record_get_rr_type(record) == records[i].rr_type &&
@@ -645,7 +645,7 @@
for (record = ast_dns_result_get_records(result); record; record = ast_dns_record_get_next(record)) {
int match = 0;
-
+
/* Let's make sure this matches one of our known records */
for (i = 0; i < adata->num_records; ++i) {
if (ast_dns_record_get_rr_type(record) == adata->records[i].rr_type &&
@@ -689,7 +689,7 @@
ast_test_status_update(test, "Unable to allocate data for async query\n");
return -1;
}
-
+
/* Start by making sure no records have been visited */
for (i = 0; i < num_records; ++i) {
records[i].visited = 0;
@@ -932,7 +932,7 @@
/*!
* \brief Async callback for off-nominal async test
- *
+ *
* This test ensures that there is a result present on the query, then it checks
* that the rcode on the result is the expected value and that there are no
* records on the result.
@@ -1047,7 +1047,7 @@
res = AST_TEST_FAIL;
}
}
-
+
return res;
}
@@ -1177,7 +1177,7 @@
ast_test_status_update(test, "Successfully canceled completed query\n");
return AST_TEST_FAIL;
}
-
+
return AST_TEST_PASS;
}
#endif
@@ -1195,7 +1195,7 @@
{
aco_info_destroy(&cfg_info);
ao2_global_obj_release(globals);
-
+
AST_TEST_UNREGISTER(resolve_sync);
AST_TEST_UNREGISTER(resolve_async);
AST_TEST_UNREGISTER(resolve_sync_off_nominal);
More information about the asterisk-commits
mailing list