summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjob <job@openbsd.org>2021-04-01 11:04:30 +0000
committerjob <job@openbsd.org>2021-04-01 11:04:30 +0000
commit43140f088e0fb6a2867c5020e20cb0e49f5128d0 (patch)
tree22495461dd1d53ab2c0eadc8a6f259f5fed04065
parentCompare the pointer variable explicitly with NULL in if condition (diff)
downloadwireguard-openbsd-43140f088e0fb6a2867c5020e20cb0e49f5128d0.tar.xz
wireguard-openbsd-43140f088e0fb6a2867c5020e20cb0e49f5128d0.zip
Abate superfluous lines from remote servers
OK claudio@
Diffstat (limited to '')
-rw-r--r--usr.sbin/rpki-client/rsync.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/rpki-client/rsync.c b/usr.sbin/rpki-client/rsync.c
index 5f6e16914ed..6bb104122ae 100644
--- a/usr.sbin/rpki-client/rsync.c
+++ b/usr.sbin/rpki-client/rsync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsync.c,v 1.22 2021/03/18 15:47:10 claudio Exp $ */
+/* $OpenBSD: rsync.c,v 1.23 2021/04/01 11:04:30 job Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -270,6 +270,7 @@ proc_rsync(char *prog, char *bind_addr, int fd)
i = 0;
args[i++] = (char *)prog;
args[i++] = "-rt";
+ args[i++] = "--no-motd";
args[i++] = "--timeout";
args[i++] = "180";
if (bind_addr != NULL) {