> +static int is_socket(char *path) { > + struct stat sb; > + int ret = lstat(path, &sb); > + return ret && S_IFSOCK(sb.st_mode); > +} This patch won’t even compile. S_IFSOCK(sb.st_mode) should have been S_IFSOCK & sb.st_mode. (I guess I should have compiled first) After making that change this patch compiles (currently running tests). -Devin