summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-11-05 20:10:02 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-11-05 20:10:02 +1100
commitf30e1acc62f884f59779d0cdc5d74933934443c4 (patch)
tree90cb9b61ad7434de73803d8f2aae1802ed55d60c /scp.c
parent178fa66a6451d890083d2441a2de207bdb74a348 (diff)
- deraadt@cvs.openbsd.org 2004/09/15 18:46:04
[scp.c] scratch that do { } while (0) wrapper in this case
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c4
1 files changed, 2 insertions, 2 deletions
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);