aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2019-08-28 20:08:24 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-08-28 20:08:24 -0700
commit17f9f2ca0627c727c34cb06935998c2596be7f98 (patch)
tree01f9222ac2d995f8859cbd2f6a87892c79826b31
parentfe735b682b55d3da3653fa023f6905117e99cb8d (diff)
parent2ab5d7e43a88da7132b9d73f15146901a2dd5df6 (diff)
downloadmdnsresponder-17f9f2ca0627c727c34cb06935998c2596be7f98.tar.gz
Merge "Stop using __DATE__/__TIME__ on all builds" am: 8229d435c9 am: 4f474a81d4 am: 1eb022be4d am: 3adc037c1d
am: 2ab5d7e43a Change-Id: Iad00575af2c6dd3912600f6d58114b1c4a1ce14f
-rw-r--r--mDNSShared/dnssd_clientlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mDNSShared/dnssd_clientlib.c b/mDNSShared/dnssd_clientlib.c
index a92c0c8..d2c69f4 100644
--- a/mDNSShared/dnssd_clientlib.c
+++ b/mDNSShared/dnssd_clientlib.c
@@ -363,6 +363,6 @@ DNSServiceErrorType DNSSD_API TXTRecordGetItemAtIndex
// NOT static -- otherwise the compiler may optimize it out
// The "@(#) " pattern is a special prefix the "what" command looks for
-#ifndef __ANDROID__
+#ifndef ANDROID
const char VersionString_SCCS_libdnssd[] = "@(#) libdns_sd " STRINGIFY(mDNSResponderVersion) " (" __DATE__ " " __TIME__ ")";
#endif