}
cfd = atoi(commfd);
+ {
+ struct stat statbuf;
+ fstat(cfd, &statbuf);
+ if(!S_ISSOCK(statbuf.st_mode)) {
+ fprintf(stderr,
+ "%s: file descriptor %i is not a socket, can't send fuse fd\n",
+ progname, cfd);
+ goto err_out;
+ }
+ }
if (setup_auto_unmount_only)
goto wait_for_auto_unmount;
goto err_out;
res = send_fd(cfd, fd);
- if (res == -1)
+ if (res != 0) {
+ umount2(mnt, MNT_DETACH); /* lazy umount */
goto err_out;
+ }
close(fd);
if (!auto_unmount) {