extern int select_p_select_nodeinfo_pack(select_nodeinfo_t *nodeinfo, Buf buffer, uint16_t protocol_version) { int rc = SLURM_ERROR; rc = other_select_nodeinfo_pack(nodeinfo->other_nodeinfo, buffer, protocol_version); return rc; }
extern int select_p_select_nodeinfo_pack(select_nodeinfo_t *nodeinfo, Buf buffer, uint16_t protocol_version) { int rc = SLURM_ERROR; if (protocol_version >= SLURM_MIN_PROTOCOL_VERSION) { rc = other_select_nodeinfo_pack(nodeinfo->other_nodeinfo, buffer, protocol_version); } return rc; }