diff options
author | Kenny Root <kroot@google.com> | 2012-02-24 11:04:42 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-02-24 11:04:42 -0800 |
commit | 1fb6662d1aa51eec54cfc133c40cacc0b15aad30 (patch) | |
tree | 2912705bce262b9de1e9bd9c2631e47ea6c3619a /libc/netbsd/net/getaddrinfo.c | |
parent | 1625c7a837d73b6729f97edb32c497d289c0220c (diff) | |
download | android_bionic-1fb6662d1aa51eec54cfc133c40cacc0b15aad30.tar.gz android_bionic-1fb6662d1aa51eec54cfc133c40cacc0b15aad30.tar.bz2 android_bionic-1fb6662d1aa51eec54cfc133c40cacc0b15aad30.zip |
Revert "Use the new NativeDaemonConnector style."
The other changes relating to this were already reverted.
This reverts commit 1625c7a837d73b6729f97edb32c497d289c0220c
Diffstat (limited to 'libc/netbsd/net/getaddrinfo.c')
-rw-r--r-- | libc/netbsd/net/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/netbsd/net/getaddrinfo.c b/libc/netbsd/net/getaddrinfo.c index 6aee69741..6ae6e3e43 100644 --- a/libc/netbsd/net/getaddrinfo.c +++ b/libc/netbsd/net/getaddrinfo.c @@ -461,7 +461,7 @@ android_getaddrinfo_proxy( // Send the request. proxy = fdopen(sock, "r+"); - if (fprintf(proxy, "0 getaddrinfo %s %s %d %d %d %d", + if (fprintf(proxy, "getaddrinfo %s %s %d %d %d %d", hostname == NULL ? "^" : hostname, servname == NULL ? "^" : servname, hints == NULL ? -1 : hints->ai_flags, |