diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-09-01 17:10:32 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-09-01 17:10:32 -0400 |
commit | 506248e3f363bb6aef3b9b5882e7a92afa957088 (patch) | |
tree | 5754838ecda50d2e094fe7c23fb003ad1ef6596e | |
parent | 15db8874c4ffd7db75cc3371b9b04a4d6507375c (diff) | |
download | multihome-506248e3f363bb6aef3b9b5882e7a92afa957088.tar.gz |
Actually ignore empty lines
-rw-r--r-- | multihome.c | 2 |
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; } |