comparison main.c @ 560:1b2d434a651b

Comment out a debug message.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 14 Nov 2012 18:57:27 +0200
parents e32881ece842
children 1ff9e85a1fcc
comparison
equal deleted inserted replaced
559:6f54edf6bd54 560:1b2d434a651b
1673 *isDirectory = (S_ISDIR(sb.st_mode)); 1673 *isDirectory = (S_ISDIR(sb.st_mode));
1674 *isWritable = (id == sb.st_uid && (sb.st_mode & S_IWUSR)); 1674 *isWritable = (id == sb.st_uid && (sb.st_mode & S_IWUSR));
1675 *isReadable = (id == sb.st_uid && (sb.st_mode & S_IRUSR)); 1675 *isReadable = (id == sb.st_uid && (sb.st_mode & S_IRUSR));
1676 #endif 1676 #endif
1677 1677
1678 THERR("'%s': dir=%d, wr=%d, rd=%d\n", 1678 // THERR("'%s': dir=%d, wr=%d, rd=%d\n", path, *isDirectory, *isWritable, *isReadable);
1679 path, *isDirectory, *isWritable, *isReadable);
1680 return TRUE; 1679 return TRUE;
1681 } 1680 }
1682 1681
1683 1682
1684 BOOL nn_mkdir_rec(const char *cpath) 1683 BOOL nn_mkdir_rec(const char *cpath)