Fix what must be a logic inverting typo...

(Logical change 1.215)
edge.strict_endians
cantab.net!aia21 2003-10-27 15:17:17 +00:00
parent 5587fe0549
commit 4ddd73798c
1 changed files with 3 additions and 2 deletions

View File

@ -92,8 +92,9 @@ int utils_valid_device (const char *name, int force)
unsigned long mnt_flags = 0;
struct stat st;
#ifndef __CYGWIN32__
return 1; /* FIXME: This doesn't work for Cygwin, so just skip it for now... */
#ifdef __CYGWIN32__
/* FIXME: This doesn't work for Cygwin, so just return success for now... */
return 1;
#endif
if (!name) {
errno = EINVAL;