From: jakob Date: Mon, 24 Apr 2000 22:37:15 +0000 (+0000) Subject: remove lint stuff. remove unneeded strlcpy. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=206491c05b70f4bb40f739904c68606c909719d6;p=openbsd remove lint stuff. remove unneeded strlcpy. --- diff --git a/usr.sbin/user/user.c b/usr.sbin/user/user.c index 07d03bb3643..94f70ee0e7e 100644 --- a/usr.sbin/user/user.c +++ b/usr.sbin/user/user.c @@ -1,4 +1,4 @@ -/* $OpenBSD: user.c,v 1.2 2000/04/24 22:31:29 jakob Exp $ */ +/* $OpenBSD: user.c,v 1.3 2000/04/24 22:37:15 jakob Exp $ */ /* $NetBSD: user.c,v 1.17 2000/04/14 06:26:55 simonb Exp $ */ /* @@ -31,15 +31,8 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include - -#ifndef lint -__COPYRIGHT( - "@(#) Copyright (c) 1999 \ - The NetBSD Foundation, Inc. All rights reserved."); -__RCSID("$NetBSD: user.c,v 1.17 2000/04/14 06:26:55 simonb Exp $"); -#endif +#include #include #include #include @@ -203,24 +196,6 @@ asystem(char *fmt, ...) return ret; } -#define NetBSD_1_4_K 104110000 - -#if defined(__NetBSD_Version__) && (__NetBSD_Version__ < NetBSD_1_4_K) -/* bounds checking strncpy */ -static int -strlcpy(char *to, char *from, size_t tosize) -{ - size_t n; - int fromsize; - - fromsize = strlen(from); - n = MIN(tosize - 1, fromsize); - (void) memcpy(to, from, n); - to[n] = '\0'; - return fromsize; -} -#endif - #ifdef EXTENSIONS /* return 1 if all of `s' is numeric */ static int