Squashed commit of the following:
commit
5ab5610b9202d21193722a4a3957d84e851a3fa5
Author: Bhagya Tholpady <bbantwal@cisco.com>
Date: Mon Apr 27 18:49:47 2020 -0400
managers: sort the inspector list in inspection policy using the instance name
sort the inspector instances in inspection policy by name rather
than type to obtain an alphabetically sorted verbose inspector
config output.
~PHInstance();
static bool comp(PHInstance* a, PHInstance* b)
- { return ( a->pp_class.api.type < b->pp_class.api.type ); }
+ { return ( a->name < b->name ); }
void set_name(const char* s)
{ name = s; }