mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 21:23:03 +01:00
use fb_utils::stricmp() to fix POSIX builds
This commit is contained in:
parent
812077dfc3
commit
c05e35bfd5
@ -3780,7 +3780,8 @@ static processing_state show_secclass(const char* object, const char* opt)
|
||||
if (!object || !*object)
|
||||
return ps_ERR;
|
||||
|
||||
const bool detail = opt && (stricmp(opt, "DETAIL") == 0 || stricmp(opt, "DET") == 0);
|
||||
const bool detail = opt && (fb_utils::stricmp(opt, "DETAIL") == 0
|
||||
|| fb_utils::stricmp(opt, "DET") == 0);
|
||||
XSQLVAR var; // To trick ISQL_print_item_blob()
|
||||
memset(&var, 0, sizeof(var));
|
||||
var.sqlsubtype = isc_blob_acl;
|
||||
|
Loading…
Reference in New Issue
Block a user