K 10 svn:author V 5 brian K 8 svn:date V 27 1997-12-18T01:10:13.000000Z K 7 svn:log V 213 Replace strcpy(a, b); /* a and b are the same size */ with strncpy(a, b, sizeof(a)); a[sizeof(a)-1] = '\0'; Making the code `correct at a glance'. Suggested by: Theo de Raadt END