this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #731 from facekapow/stub-syscfg

Stub `SCDynamicStoreKeyCreateComputerName`

authored by

Luboš Doležel and committed by
GitHub
59a172dc 14efc180

+6
+6
src/SystemConfiguration/stubs.c
··· 9 9 const CFStringRef kSCEntNetIPv6 = CFSTR("IPv6"); 10 10 const CFStringRef kSCPropNetIPv4Router = CFSTR("Router"); 11 11 const CFStringRef kSCPropNetIPv6Router = CFSTR("Router"); /* Yes, they are the same */ 12 + const CFStringRef kSCCompSystem = CFSTR("System"); 12 13 13 14 CFStringRef SCDynamicStoreKeyCreateNetworkGlobalEntity(CFAllocatorRef allocator, CFStringRef domain, CFStringRef entity) 14 15 { ··· 44 45 STUB(); 45 46 return FALSE; 46 47 } 48 + 49 + CFStringRef SCDynamicStoreKeyCreateComputerName(CFAllocatorRef allocator) { 50 + STUB(); 51 + return NULL; 52 + };