summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-07-17 22:47:56 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-07-17 22:47:56 +0000
commite3d97e60d82760a934bb65b3f67df992c434e4a6 (patch)
treeb89fb1b34addae33892180a5ff60c5bfacb8dbca /package
parent073f05064e806d0a0a2d75fb2a259e1962526db5 (diff)
[package] resolveip: fix whitespace
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27671 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/resolveip/src/resolveip.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/package/resolveip/src/resolveip.c b/package/resolveip/src/resolveip.c
index 8d6788c9a..310f35ffd 100644
--- a/package/resolveip/src/resolveip.c
+++ b/package/resolveip/src/resolveip.c
@@ -36,16 +36,16 @@ int main(int argc, char **argv)
{
int timeout = 3;
char opt;
- char ipaddr[INET6_ADDRSTRLEN];
- void *addr;
- struct addrinfo *res, *rp;
+ char ipaddr[INET6_ADDRSTRLEN];
+ void *addr;
+ struct addrinfo *res, *rp;
struct sigaction sa = { .sa_handler = &abort_query };
- struct addrinfo hints = {
- .ai_family = AF_UNSPEC,
- .ai_socktype = SOCK_STREAM,
- .ai_protocol = IPPROTO_TCP,
- .ai_flags = 0
- };
+ struct addrinfo hints = {
+ .ai_family = AF_UNSPEC,
+ .ai_socktype = SOCK_STREAM,
+ .ai_protocol = IPPROTO_TCP,
+ .ai_flags = 0
+ };
while ((opt = getopt(argc, argv, "46t:h")) > -1)
{
@@ -80,8 +80,8 @@ int main(int argc, char **argv)
if (getaddrinfo(argv[optind], NULL, &hints, &res))
exit(2);
- for (rp = res; rp != NULL; rp = rp->ai_next)
- {
+ for (rp = res; rp != NULL; rp = rp->ai_next)
+ {
addr = (rp->ai_family == AF_INET)
? (void *)&((struct sockaddr_in *)rp->ai_addr)->sin_addr
: (void *)&((struct sockaddr_in6 *)rp->ai_addr)->sin6_addr