Browse Source

dev_disconnect: don't permfail more than once.

The coming tests trigger this latent bug under travis.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 8 years ago
committed by Christian Decker
parent
commit
f83ee6d5ea
  1. 8
      lightningd/subd.c

8
lightningd/subd.c

@ -645,7 +645,11 @@ bool dev_disconnect_permanent(struct lightningd *ld)
r = read(ld->dev_disconnect_fd, permfail, sizeof(permfail));
if (r < 0)
fatal("Reading dev_disconnect file: %s", strerror(errno));
lseek(ld->dev_disconnect_fd, -r, SEEK_CUR);
return memeq(permfail, r, "permfail", strlen("permfail"));
if (memeq(permfail, r, "permfail", strlen("permfail")))
return true;
/* Nope, restore. */
lseek(ld->dev_disconnect_fd, -r, SEEK_CUR);
return false;
}

Loading…
Cancel
Save