$OpenBSD: patch-llist_c,v 1.1.1.1 2004/06/26 19:00:48 sturm Exp $
--- llist.c.orig	2004-02-11 15:27:31.000000000 -0500
+++ llist.c	2004-06-08 15:52:01.000000000 -0400
@@ -27,7 +27,7 @@ ll_allocate( char *name ) 
     } 
 
     /* copy info into new item */
-    strcpy( new->ll_name, name );
+    (void)strlcpy( new->ll_name, name, sizeof( new->ll_name ) );
     new->ll_next = NULL;
 
     return new;
