diff options
author | davide <davide@FreeBSD.org> | 2014-10-16 18:04:43 +0000 |
---|---|---|
committer | davide <davide@FreeBSD.org> | 2014-10-16 18:04:43 +0000 |
commit | e88bd26b3f101e3aad82304315f731daa60cc6de (patch) | |
tree | f232fa8c3b1009450da57b71fb0323893520f81c /sys/dev/hatm | |
parent | 8afb9f2a447867f4564d2c596eab8b20d9b2fc54 (diff) | |
download | FreeBSD-src-e88bd26b3f101e3aad82304315f731daa60cc6de.zip FreeBSD-src-e88bd26b3f101e3aad82304315f731daa60cc6de.tar.gz |
Follow up to r225617. In order to maximize the re-usability of kernel code
in userland rename in-kernel getenv()/setenv() to kern_setenv()/kern_getenv().
This fixes a namespace collision with libc symbols.
Submitted by: kmacy
Tested by: make universe
Diffstat (limited to 'sys/dev/hatm')
-rw-r--r-- | sys/dev/hatm/if_hatm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hatm/if_hatm.c b/sys/dev/hatm/if_hatm.c index c022724..0be8a3d 100644 --- a/sys/dev/hatm/if_hatm.c +++ b/sys/dev/hatm/if_hatm.c @@ -1319,7 +1319,7 @@ kenv_getuint(struct hatm_softc *sc, const char *var, snprintf(full, sizeof(full), "hw.%s.%s", device_get_nameunit(sc->dev), var); - if ((val = getenv(full)) == NULL) + if ((val = kern_getenv(full)) == NULL) return (0); u = strtoul(val, &end, 0); if (end == val || *end != '\0') { |