diff options
author | 2019-03-30 07:24:02 +0000 | |
---|---|---|
committer | 2019-03-30 07:24:02 +0000 | |
commit | 80888faf8d8833a31a3a3c116f60fca19ccfa466 (patch) | |
tree | 74a5afe6a4b27d225c260aaf97593f725725a5e4 | |
parent | no powersave for wi(4); missed in previous commits (diff) | |
download | wireguard-openbsd-80888faf8d8833a31a3a3c116f60fca19ccfa466.tar.xz wireguard-openbsd-80888faf8d8833a31a3a3c116f60fca19ccfa466.zip |
fix typo in ERRX1
-rw-r--r-- | usr.bin/rsync/ids.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rsync/ids.c b/usr.bin/rsync/ids.c index f4c77f5f22d..3b0367883a8 100644 --- a/usr.bin/rsync/ids.c +++ b/usr.bin/rsync/ids.c @@ -1,4 +1,4 @@ -/* $Id: ids.c,v 1.9 2019/03/23 16:04:28 deraadt Exp $ */ +/* $Id: ids.c,v 1.10 2019/03/30 07:24:02 deraadt Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -236,7 +236,7 @@ idents_send(struct sess *sess, ERRX1(sess, "io_write_byte"); return 0; } else if (!io_write_buf(sess, fd, ids[i].name, sz)) { - ERRX1(sess, "io_write_byte"); + ERRX1(sess, "io_write_buf"); return 0; } } |