mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
27 lines
526 B
Text
27 lines
526 B
Text
--- src/Cedar/Server.c.orig 2016-04-24 14:49:31 UTC
|
|
+++ src/Cedar/Server.c
|
|
@@ -10822,23 +10822,7 @@ bool SiCheckCurrentRegion(CEDAR *c, char
|
|
//
|
|
bool SiIsEnterpriseFunctionsRestrictedOnOpenSource(CEDAR *c)
|
|
{
|
|
- char region[128];
|
|
- bool ret = false;
|
|
- // Validate arguments
|
|
- if (c == NULL)
|
|
- {
|
|
- return false;
|
|
- }
|
|
-
|
|
-
|
|
- SiGetCurrentRegion(c, region, sizeof(region));
|
|
-
|
|
- if (StrCmpi(region, "JP") == 0 || StrCmpi(region, "CN") == 0)
|
|
- {
|
|
- ret = true;
|
|
- }
|
|
-
|
|
- return ret;
|
|
+ return false;
|
|
}
|
|
|
|
// Update the current region
|