Add fd = -1 after close when we detect the format so that subsequent

open_dev will reopen the device.
This commit is contained in:
imp 2009-01-02 08:21:21 +00:00
parent f34069b107
commit 636826531a

View File

@ -1065,6 +1065,7 @@ main(int argc, char **argv)
if (recvfn == NULL) { /* guess... */
recvfn = detect_recv_fn(fd, TAG | CHANNEL);
close(fd);
fd = -1;
}
snprintf(devbase, sizeof(devbase), "%s%d.0", device_string, current_board);
if (open_dev(&fd, devbase) < 0)