summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-12-07 08:00:45 +0000
committerderaadt <deraadt@openbsd.org>1996-12-07 08:00:45 +0000
commit345167bf10b31d376ef0d1a32b21e5088d4ad275 (patch)
tree43f66d0bd3b1f36ce912b69fb19c1612b45da1c7
parent/etc does not contain bins (diff)
downloadwireguard-openbsd-345167bf10b31d376ef0d1a32b21e5088d4ad275.tar.xz
wireguard-openbsd-345167bf10b31d376ef0d1a32b21e5088d4ad275.zip
increase buf sizes, hacked w/ bitblt
-rw-r--r--usr.bin/newsyslog/newsyslog.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/newsyslog/newsyslog.c b/usr.bin/newsyslog/newsyslog.c
index 0368eb46d9a..0894fded093 100644
--- a/usr.bin/newsyslog/newsyslog.c
+++ b/usr.bin/newsyslog/newsyslog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: newsyslog.c,v 1.6 1996/09/02 18:47:16 tholo Exp $ */
+/* $OpenBSD: newsyslog.c,v 1.7 1996/12/07 08:00:45 deraadt Exp $ */
/*
* This file contains changes from the Open Software Foundation.
@@ -29,7 +29,7 @@ provided "as is" without express or implied warranty.
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: newsyslog.c,v 1.6 1996/09/02 18:47:16 tholo Exp $";
+static char rcsid[] = "$OpenBSD: newsyslog.c,v 1.7 1996/12/07 08:00:45 deraadt Exp $";
#endif /* not lint */
#ifndef CONF
@@ -96,7 +96,7 @@ time_t timenow;
int syslog_pid; /* read in from /etc/syslog.pid */
#define MIN_PID 3
#define MAX_PID 65534
-char hostname[64]; /* hostname */
+char hostname[MAXHOSTNAMELEN]; /* hostname */
char *daytime; /* timenow in human readable form */
@@ -376,8 +376,8 @@ dotrim(log,numdays,flags,perm,owner_uid,group_gid)
int owner_uid;
int group_gid;
{
- char file1[128], file2[128];
- char zfile1[128], zfile2[128];
+ char file1[MAXPATHLEN], file2[MAXPATHLEN];
+ char zfile1[MAXPATHLEN], zfile2[MAXPATHLEN];
int fd;
struct stat st;
int days = numdays;
@@ -502,7 +502,7 @@ compress_log(log)
char *log;
{
int pid;
- char tmp[128];
+ char tmp[MAXPATHLEN];
pid = fork();
(void) sprintf(tmp,"%s.0",log);
@@ -534,7 +534,7 @@ int age_old_log(file)
char *file;
{
struct stat sb;
- char tmp[MAXPATHLEN+3];
+ char tmp[MAXPATHLEN];
(void) strcpy(tmp,file);
if (stat(strcat(tmp,".0"),&sb) < 0)