mirror of
https://github.com/openbsd/src.git
synced 2024-12-21 23:18:00 -08:00
Use BUFSIZ instead of PATH_MAX. Since it doesn't anything with a file
system path. input from claudio ok tb claudio
This commit is contained in:
parent
7cb45cca0f
commit
ee5fafae9b
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: uudecode.c,v 1.28 2022/08/30 15:57:19 yasuoka Exp $ */
|
||||
/* $OpenBSD: uudecode.c,v 1.29 2022/08/30 16:06:09 yasuoka Exp $ */
|
||||
/* $FreeBSD: uudecode.c,v 1.49 2003/05/03 19:44:46 obrien Exp $ */
|
||||
|
||||
/*-
|
||||
@ -190,7 +190,7 @@ decode2(void)
|
||||
void *handle;
|
||||
struct passwd *pw;
|
||||
struct stat st;
|
||||
char buf[PATH_MAX];
|
||||
char buf[BUFSIZ];
|
||||
|
||||
base64 = 0;
|
||||
/* search for header line */
|
||||
@ -342,7 +342,7 @@ uu_decode(void)
|
||||
{
|
||||
int i, ch;
|
||||
char *p;
|
||||
char buf[PATH_MAX];
|
||||
char buf[BUFSIZ];
|
||||
|
||||
/* for each input line */
|
||||
for (;;) {
|
||||
@ -429,8 +429,8 @@ static int
|
||||
base64_decode(void)
|
||||
{
|
||||
int n;
|
||||
char inbuf[ROUNDDOWN(PATH_MAX, 4) + 1];
|
||||
unsigned char outbuf[PATH_MAX * 4];
|
||||
char inbuf[ROUNDDOWN(BUFSIZ, 4) + 1];
|
||||
unsigned char outbuf[BUFSIZ * 4];
|
||||
|
||||
for (;;) {
|
||||
switch (get_line(inbuf, sizeof(inbuf))) {
|
||||
|
Loading…
Reference in New Issue
Block a user