Home
last modified time | relevance | path

Searched refs:envval (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Ddebug.c125 char *envval = NULL; in cryptodebug_init() local
132 envval = getenv(CRYPTO_DEBUG_ENV); in cryptodebug_init()
137 if (envval == NULL || (strcmp(envval, "") == 0)) { in cryptodebug_init()
140 } else if (strcmp(envval, "stderr") == 0) { in cryptodebug_init()
143 } else if (strcmp(envval, "syslog") == 0) { in cryptodebug_init()
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetenv.c360 setenv(const char *envname, const char *envval, int overwrite) in setenv() argument
374 val_len = strlen(envval); in setenv()
385 (void) memcpy(new_string + name_len + 1, envval, val_len); in setenv()