- dtucker@cvs.openbsd.org 2013/06/04 19:12:23
[scp.c] use MAXPATHLEN for buffer size instead of fixed value. ok markus
This commit is contained in:
parent
4ac66af091
commit
194454d7a8
|
@ -22,6 +22,9 @@
|
|||
force the MAC output to be 64-bit aligned so umac won't see unaligned
|
||||
accesses on strict-alignment architectures. bz#2101, patch from
|
||||
tomas.kuthan at oracle.com, ok djm@
|
||||
- dtucker@cvs.openbsd.org 2013/06/04 19:12:23
|
||||
[scp.c]
|
||||
use MAXPATHLEN for buffer size instead of fixed value. ok markus
|
||||
|
||||
20130602
|
||||
- (tim) [Makefile.in] Make Solaris, UnixWare, & OpenServer linkers happy
|
||||
|
|
4
scp.c
4
scp.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: scp.c,v 1.174 2013/06/01 20:59:25 dtucker Exp $ */
|
||||
/* $OpenBSD: scp.c,v 1.175 2013/06/04 19:12:23 dtucker Exp $ */
|
||||
/*
|
||||
* scp - secure remote copy. This is basically patched BSD rcp which
|
||||
* uses ssh to do the data transfer (instead of using rcmd).
|
||||
|
@ -850,7 +850,7 @@ rsource(char *name, struct stat *statp)
|
|||
{
|
||||
DIR *dirp;
|
||||
struct dirent *dp;
|
||||
char *last, *vect[1], path[1100];
|
||||
char *last, *vect[1], path[MAXPATHLEN];
|
||||
|
||||
if (!(dirp = opendir(name))) {
|
||||
run_err("%s: %s", name, strerror(errno));
|
||||
|
|
Loading…
Reference in New Issue