[scp.c]
     don't need main prototype (also sync with rcp); ok markus@
This commit is contained in:
Ben Lindstrom 2001-08-15 23:21:01 +00:00
Родитель 930b14a28e
Коммит 1fa90101f0
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -20,6 +20,9 @@
[ssh.c tildexpand.c]
fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>.
ok markus@
- stevesk@cvs.openbsd.org 2001/08/13 23:38:54
[scp.c]
don't need main prototype (also sync with rcp); ok markus@
20010814
- (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup
@ -6309,4 +6312,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1480 2001/08/15 23:19:21 mouring Exp $
$Id: ChangeLog,v 1.1481 2001/08/15 23:21:01 mouring Exp $

3
scp.c
Просмотреть файл

@ -75,7 +75,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: scp.c,v 1.79 2001/08/06 19:47:05 stevesk Exp $");
RCSID("$OpenBSD: scp.c,v 1.80 2001/08/13 23:38:54 stevesk Exp $");
#include "xmalloc.h"
#include "atomicio.h"
@ -214,7 +214,6 @@ int pflag, iamremote, iamrecursive, targetshouldbedirectory;
#define CMDNEEDS 64
char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
int main(int, char *[]);
int response(void);
void rsource(char *, struct stat *);
void sink(int, char *[]);