|
From: <sv...@va...> - 2015-08-12 16:03:25
|
Author: iraisr
Date: Wed Aug 12 17:03:16 2015
New Revision: 15530
Log:
Fix the regression from r15518 which broke builds
on older Solaris releases.
Modified:
trunk/coregrind/m_syswrap/syswrap-solaris.c
Modified: trunk/coregrind/m_syswrap/syswrap-solaris.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-solaris.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-solaris.c Wed Aug 12 17:03:16 2015
@@ -7820,6 +7820,7 @@
"entity_name->rpr_answertype)", r->rpr_answertype);
}
break;
+ #if (SOLARIS_REPCACHE_PROTOCOL_VERSION >= 25)
case VKI_REP_PROTOCOL_ENTITY_GET_ROOT:
{
struct vki_rep_protocol_entity_root *r =
@@ -7830,6 +7831,7 @@
"entity_root->rpr_outid)", r->rpr_outid);
}
break;
+ #endif /* SOLARIS_REPCACHE_PROTOCOL_VERSION >= 25 */
case VKI_REP_PROTOCOL_ENTITY_GET:
{
struct vki_rep_protocol_entity_get *r =
|