summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-15 18:46:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-15 18:46:05 +0000
commit22474403246684c418d1e8f463b1440dc07a5fbb (patch)
treec02f731014be3054cec76d53fab3e5fda93956d1 /usr.bin/ssh/scp.c
parent596443406875dbe0a479226729ebdb93c811f767 (diff)
scratch that do { } while (0) wrapper in this case
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 1d216aec3f3..c7a46cdbf2b 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -71,7 +71,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.117 2004/08/11 21:44:32 avsm Exp $");
+RCSID("$OpenBSD: scp.c,v 1.118 2004/09/15 18:46:04 deraadt Exp $");
#include "xmalloc.h"
#include "atomicio.h"
@@ -721,7 +721,7 @@ sink(int argc, char **argv)
#define atime tv[0]
#define mtime tv[1]
-#define SCREWUP(str) do { why = str; goto screwup; } while (0)
+#define SCREWUP(str) { why = str; goto screwup; }
setimes = targisdir = 0;
mask = umask(0);