summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrinivas%netscape.com <devnull@localhost>2000-02-17 15:32:29 +0000
committersrinivas%netscape.com <devnull@localhost>2000-02-17 15:32:29 +0000
commite831cf4bfc188b32553214cf904d59f55441fee6 (patch)
tree85156c423acbdde2a86cc34b45a11fbd4b92b05d
parentb5223b4bc4875a38607165bff5b8527c1870f5db (diff)
downloadnspr-hg-e831cf4bfc188b32553214cf904d59f55441fee6.tar.gz
Fixed print statement.
-rw-r--r--pr/tests/gethost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/tests/gethost.c b/pr/tests/gethost.c
index f4f2b51b..819dea1c 100644
--- a/pr/tests/gethost.c
+++ b/pr/tests/gethost.c
@@ -265,7 +265,7 @@ int main(int argc, char **argv)
PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET6, 0, &addr);
addr.ipv6.ip = v6addr;
PR_NetAddrToString(&addr, tmp_buf, 256);
- printf("IPv6 LOOPBACK: %s\n", tmp_buf);
+ printf("IPv4-mapped IPv6 LOOPBACK: %s\n", tmp_buf);
}
printf("PASS\n");
return 0;