openbsd-ports/mail/dspam/patches/patch-src_util_c
todd 8779cd4b60 o update to dspam 3.8.0 mostly from brad@
o fix dspamc that was busted in the 3.8.0 release, verified to work via testing
2007-12-21 14:42:23 +00:00

31 lines
884 B
Plaintext

$OpenBSD: patch-src_util_c,v 1.3 2007/12/21 14:42:23 todd Exp $
--- src/util.c.orig Sat May 13 03:12:59 2006
+++ src/util.c Sun Apr 29 17:57:52 2007
@@ -278,7 +278,7 @@ const char * _ds_userdir_path (char *path, const char
#endif
if (p == NULL)
- strcpy(userhome, home);
+ strlcpy(userhome, home, sizeof(userhome));
else
strlcpy(userhome, p->pw_dir, sizeof(userhome));
@@ -307,7 +307,7 @@ const char * _ds_userdir_path (char *path, const char
free(f);
#else
strlcpy(username, filename, MAX_FILENAME_LENGTH);
- strcpy(userpath, username);
+ strlcpy(userpath, username, sizeof (userpath));
#endif
/* Use home/opt-in/ and home/opt-out/ to store opt files, instead of
@@ -748,6 +748,7 @@ inet_ntoa_r(struct in_addr in, char *buf, int len)
return(NULL);
}
- return strcpy(buf, b);
+ strlcpy(buf, b, len);
+ return buf;
}
#endif