Any one using symbolic links under 2.9?

William C. Marsh bmarsh at noscvax.UUCP
Fri Aug 24 02:38:09 AEST 1984


If UCB_NET is not defined, the two system calls symlink and readlink
do not get included.  To include these two functions, (without including
ALL the UCB_NET stuff), change line 270 of file /usr/src/sys/sys/sysent.c
from the following:

#ifdef UCB_NET

to

#if defined(UCB_NET) || defined(UCB_SYMLINKS)

This will include symlink and readlink into the local system call table.
(the network system calls will be defined as nosys by a previous ifdef)

Bill Marsh				bmarsh at nosc
Code 911
Naval Ocean Systems Center		...sdcrdef!sdcsvax!noscvax!bmarsh
271 Catalina Blvd.
San Diego, CA 92152



More information about the Comp.bugs.2bsd mailing list