diff options
| author | Jacques Vidrine <nectar@FreeBSD.org> | 2003-05-01 19:03:14 +0000 | 
|---|---|---|
| committer | Jacques Vidrine <nectar@FreeBSD.org> | 2003-05-01 19:03:14 +0000 | 
| commit | d05090827f0e5b95cc7d2bcdde8b3b4e0f986241 (patch) | |
| tree | 736595316c161b3d1ae559f331feaa6ba12b500e /lib/libc/rpc/rpc_soc.c | |
| parent | 9501b60383bd4123b406e604b1fbe8108778c634 (diff) | |
Notes
Diffstat (limited to 'lib/libc/rpc/rpc_soc.c')
| -rw-r--r-- | lib/libc/rpc/rpc_soc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/rpc/rpc_soc.c b/lib/libc/rpc/rpc_soc.c index 13a68f67178a..9a58fc59246a 100644 --- a/lib/libc/rpc/rpc_soc.c +++ b/lib/libc/rpc/rpc_soc.c @@ -535,7 +535,7 @@ svcunix_create(sock, sendsize, recvsize, path)  	memset(&sun, 0, sizeof sun);  	sun.sun_family = AF_LOCAL; -	if (_strlcpy(sun.sun_path, path, sizeof(sun.sun_path)) >= +	if (strlcpy(sun.sun_path, path, sizeof(sun.sun_path)) >=  	    sizeof(sun.sun_path))  		goto done;  	sun.sun_len = SUN_LEN(&sun);  | 
