android: fix 'stat', ifdef S_TYPEIS* in coreutiles/stat.c

patch modified from 'BusyBox Patch V1.0 (Vitaly Greck)'
https://code.google.com/p/busybox-android/downloads/detail?name=patch_busybox

Signed-off-by: Tias Guns <tias@ulyssis.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Tias Guns 2012-06-03 16:43:06 +02:00 committed by Denys Vlasenko
parent 64f763b42a
commit a1ec841913

View File

@ -99,9 +99,15 @@ static const char *file_type(const struct stat *st)
if (S_ISFIFO(st->st_mode)) return "fifo";
if (S_ISLNK(st->st_mode)) return "symbolic link";
if (S_ISSOCK(st->st_mode)) return "socket";
#ifdef S_TYPEISMQ
if (S_TYPEISMQ(st)) return "message queue";
#endif
#ifdef S_TYPEISSEM
if (S_TYPEISSEM(st)) return "semaphore";
#endif
#ifdef S_TYPEISSHM
if (S_TYPEISSHM(st)) return "shared memory object";
#endif
#ifdef S_TYPEISTMO
if (S_TYPEISTMO(st)) return "typed memory object";
#endif