Skip to content

Commit

Permalink
* posix/tst-rfc3484-2.c (do_test): Likewise.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Oct 14, 2007
1 parent a94673e commit dfcf64c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
(getaddrinfo): Initialize service_order.
* posix/tst-rfc3484.c (do_test): Adjust for addition of
service_order field to sorting structure.
* posix/tst-rfc3484-2.c (do_test): Likewise.

* include/time.h: Declare __tzset_parse_tz and __tzset_compute.
* time/tzset.c (tzset_internal): Break TZ string parsing out into
Expand Down
4 changes: 4 additions & 0 deletions posix/tst-rfc3484-2.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ do_test (void)
results[0].got_source_addr = true;
results[0].source_addr_len = sizeof (so1);
results[0].source_addr_flags = 0;
results[0].service_order = 0;
memcpy (&results[0].source_addr, &so1, sizeof (so1));

results[1].dest_addr = &ai2;
results[1].got_source_addr = true;
results[1].source_addr_len = sizeof (so2);
results[1].source_addr_flags = 0;
results[1].service_order = 1;
memcpy (&results[1].source_addr, &so2, sizeof (so2));


Expand All @@ -122,12 +124,14 @@ do_test (void)
results[1].got_source_addr = true;
results[1].source_addr_len = sizeof (so1);
results[1].source_addr_flags = 0;
results[1].service_order = 1;
memcpy (&results[1].source_addr, &so1, sizeof (so1));

results[0].dest_addr = &ai2;
results[0].got_source_addr = true;
results[0].source_addr_len = sizeof (so2);
results[0].source_addr_flags = 0;
results[0].service_order = 0;
memcpy (&results[0].source_addr, &so2, sizeof (so2));


Expand Down
1 change: 1 addition & 0 deletions posix/tst-rfc3484.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ do_test (void)
memcpy(&results[i].source_addr, &so, sizeof (so));
results[i].source_addr_len = sizeof (so);
results[i].source_addr_flags = 0;
results[i].service_order = i;
}

qsort (results, naddrs, sizeof (results[0]), rfc3484_sort);
Expand Down

0 comments on commit dfcf64c

Please sign in to comment.