diff options
author | Mattias Andrée <maandree@kth.se> | 2023-06-23 12:25:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-06-23 12:25:18 +0200 |
commit | 748904541e5857952f1281745b3c93c8265f2c4b (patch) | |
tree | 153272160eb0cc2c02bf02566818bb3cfde69b95 /key2root-rmkey.c | |
parent | key2root-rmkey, key2root-lskeys: check for NUL byte on truncated line (diff) | |
download | key2root-748904541e5857952f1281745b3c93c8265f2c4b.tar.gz key2root-748904541e5857952f1281745b3c93c8265f2c4b.tar.bz2 key2root-748904541e5857952f1281745b3c93c8265f2c4b.tar.xz |
Add key lookup to key2root-addkey and fix writeall
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | key2root-rmkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/key2root-rmkey.c b/key2root-rmkey.c index 1165435..1b4a366 100644 --- a/key2root-rmkey.c +++ b/key2root-rmkey.c @@ -26,7 +26,7 @@ writeall(int fd, const char *data, size_t len) size_t off = 0; ssize_t r; - for (;;) { + while (off < len) { r = write(fd, &data[off], len - off); if (r < 0) return -1; |