summaryrefslogtreecommitdiff
path: root/gnu/usr.sbin/sendmail/libsmutil/strl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.sbin/sendmail/libsmutil/strl.c')
-rw-r--r--gnu/usr.sbin/sendmail/libsmutil/strl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.sbin/sendmail/libsmutil/strl.c b/gnu/usr.sbin/sendmail/libsmutil/strl.c
index d3cd20fe00a..aa24ee0f77c 100644
--- a/gnu/usr.sbin/sendmail/libsmutil/strl.c
+++ b/gnu/usr.sbin/sendmail/libsmutil/strl.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
+ * Copyright (c) 1999-2000 Sendmail, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
@@ -9,7 +9,7 @@
*/
#ifndef lint
-static char id[] = "@(#)$Sendmail: strl.c,v 8.5 1999/12/29 22:13:46 ca Exp $";
+static char id[] = "@(#)$Sendmail: strl.c,v 8.5.14.2 2000/09/17 17:04:24 gshapiro Exp $";
#endif /* ! lint */
#include <sendmail.h>
@@ -77,7 +77,7 @@ strlcat(dst, src, len)
o = strlen(dst);
if (len < o + 1)
- return o + strlen(src);
+ return o + strlen(src);
len -= o + 1;
for (i = 0, j = o; i < len && (dst[j] = src[i]) != 0; i++, j++)
continue;