aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-09-01 17:10:32 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-09-01 17:10:32 -0400
commit506248e3f363bb6aef3b9b5882e7a92afa957088 (patch)
tree5754838ecda50d2e094fe7c23fb003ad1ef6596e
parent15db8874c4ffd7db75cc3371b9b04a4d6507375c (diff)
downloadmultihome-506248e3f363bb6aef3b9b5882e7a92afa957088.tar.gz
Actually ignore empty lines
-rw-r--r--multihome.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/multihome.c b/multihome.c
index 6ee2a63..5715833 100644
--- a/multihome.c
+++ b/multihome.c
@@ -378,7 +378,7 @@ void user_transfer(int copy_mode) {
recptr = rec;
// Ignore empty lines
- if (strlen(recptr)) {
+ if (strlen(recptr) == 0) {
continue;
}