summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--scp.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 70fc70cc3..188869c3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,9 @@
26 - mickey@cvs.openbsd.org 2004/09/15 18:42:27 26 - mickey@cvs.openbsd.org 2004/09/15 18:42:27
27 [sshd.c] 27 [sshd.c]
28 use less doubles in daemons; markus@ ok 28 use less doubles in daemons; markus@ ok
29 - deraadt@cvs.openbsd.org 2004/09/15 18:46:04
30 [scp.c]
31 scratch that do { } while (0) wrapper in this case
29 32
3020041102 3320041102
31 - (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX 34 - (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX
@@ -1805,4 +1808,4 @@
1805 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1808 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1806 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1809 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1807 1810
1808$Id: ChangeLog,v 1.3568 2004/11/05 09:09:09 dtucker Exp $ 1811$Id: ChangeLog,v 1.3569 2004/11/05 09:10:02 dtucker Exp $
diff --git a/scp.c b/scp.c
index ef9eaa1a4..69b5fc6d3 100644
--- a/scp.c
+++ b/scp.c
@@ -71,7 +71,7 @@
71 */ 71 */
72 72
73#include "includes.h" 73#include "includes.h"
74RCSID("$OpenBSD: scp.c,v 1.117 2004/08/11 21:44:32 avsm Exp $"); 74RCSID("$OpenBSD: scp.c,v 1.118 2004/09/15 18:46:04 deraadt Exp $");
75 75
76#include "xmalloc.h" 76#include "xmalloc.h"
77#include "atomicio.h" 77#include "atomicio.h"
@@ -726,7 +726,7 @@ sink(int argc, char **argv)
726 726
727#define atime tv[0] 727#define atime tv[0]
728#define mtime tv[1] 728#define mtime tv[1]
729#define SCREWUP(str) do { why = str; goto screwup; } while (0) 729#define SCREWUP(str) { why = str; goto screwup; }
730 730
731 setimes = targisdir = 0; 731 setimes = targisdir = 0;
732 mask = umask(0); 732 mask = umask(0);