diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 1 | ||||
-rw-r--r-- | lib/libc/gen/gethostname.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 79ad35d..1969291 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -9,6 +9,7 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. LIB=c +# If you bump SHLIB_MAJOR, remove kluge from gen/gethostname.c. SHLIB_MAJOR= 5 SHLIBDIR?= /lib CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include diff --git a/lib/libc/gen/gethostname.c b/lib/libc/gen/gethostname.c index 37b52ca..acc3386 100644 --- a/lib/libc/gen/gethostname.c +++ b/lib/libc/gen/gethostname.c @@ -49,6 +49,9 @@ gethostname(name, namelen) { int mib[2]; + /* Kluge to avoid ABI breakage. */ + namelen = (int)namelen; + mib[0] = CTL_KERN; mib[1] = KERN_HOSTNAME; if (sysctl(mib, 2, name, &namelen, NULL, 0) == -1) { |