Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/libntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14686/libntfs
Modified Files:
dir.c
Log Message:
tidy up djgpp S_IF{SOCK,LNK} fix
Index: dir.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/dir.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -p -r1.51 -r1.52
--- dir.c 29 Jan 2006 14:07:45 -0000 1.51
+++ dir.c 30 Jan 2006 22:10:31 -0000 1.52
@@ -2,7 +2,7 @@
* dir.c - Directory handling code. Part of the Linux-NTFS project.
*
* Copyright (c) 2002-2005 Anton Altaparmakov
- * Copyright (c) 2005 Yura Pakhuchiy
+ * Copyright (c) 2005-2006 Yura Pakhuchiy
* Copyright (c) 2004-2005 Richard Russon
*
* This program/include file is free software; you can redistribute it and/or
@@ -42,15 +42,6 @@
#include <sys/sysmacros.h>
#endif
-#ifdef DJGPP
-#ifndef S_IFLNK
-#define S_IFLNK 0xa000
-#endif
-#ifndef S_IFSOCK
-#define S_IFSOCK 0xc000
-#endif
-#endif
-
#include "types.h"
#include "debug.h"
#include "attrib.h"
|