MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / activation_note_refusal

Function activation_note_refusal

src/cli/activation_transaction.c:101–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101static void activation_note_refusal(const char *predicate, unsigned long os_error) {
102 if (g_activation_refusal_note[0] != '\0') {
103 return;
104 }
105 (void)snprintf(g_activation_refusal_note, sizeof(g_activation_refusal_note), "%s (os %lu)%s%s",
106 predicate, os_error, g_activation_refusal_object ? " at " : "",
107 g_activation_refusal_object ? g_activation_refusal_object : "");
108}
109
110#ifndef _WIN32
111/* A permission refusal has no errno to report — the syscall succeeded and the

Calls

no outgoing calls

Tested by

no test coverage detected