From owner-svn-soc-all@FreeBSD.ORG Sun Jun 5 16:18:34 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id ECB7D106566B for ; Sun, 5 Jun 2011 16:18:31 +0000 (UTC) (envelope-from gk@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Sun, 05 Jun 2011 16:18:31 +0000 Date: Sun, 05 Jun 2011 16:18:31 +0000 From: gk@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110605161831.ECB7D106566B@hub.freebsd.org> Cc: Subject: socsvn commit: r222832 - soc2011/gk/ino64-head/lib/libc/gen X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jun 2011 16:18:34 -0000 Author: gk Date: Sun Jun 5 16:18:31 2011 New Revision: 222832 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=222832 Log: mv dirent_private.h dirent-private.h Added: soc2011/gk/ino64-head/lib/libc/gen/dirent-private.h (contents, props changed) - copied, changed from r222617, soc2011/gk/ino64-head/lib/libc/gen/dirent_private.h Deleted: soc2011/gk/ino64-head/lib/libc/gen/dirent_private.h Modified: soc2011/gk/ino64-head/lib/libc/gen/closedir.c soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c soc2011/gk/ino64-head/lib/libc/gen/fts.c soc2011/gk/ino64-head/lib/libc/gen/getcwd.c soc2011/gk/ino64-head/lib/libc/gen/opendir.c soc2011/gk/ino64-head/lib/libc/gen/readdir.c soc2011/gk/ino64-head/lib/libc/gen/rewinddir.c soc2011/gk/ino64-head/lib/libc/gen/seekdir.c soc2011/gk/ino64-head/lib/libc/gen/telldir.c Modified: soc2011/gk/ino64-head/lib/libc/gen/closedir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/closedir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/closedir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -42,7 +42,7 @@ #include "un-namespace.h" #include "libc_private.h" -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" /* Copied and modified: soc2011/gk/ino64-head/lib/libc/gen/dirent-private.h (from r222617, soc2011/gk/ino64-head/lib/libc/gen/dirent_private.h) ============================================================================== Modified: soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/fts-compat.c Sun Jun 5 16:18:31 2011 (r222832) @@ -52,7 +52,7 @@ #include "fts-compat.h" #include "un-namespace.h" -#include "dirent_private.h" +#include "dirent-private.h" FTSENT *__fts_children_44bsd(FTS *, int); int __fts_close_44bsd(FTS *); Modified: soc2011/gk/ino64-head/lib/libc/gen/fts.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/fts.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/fts.c Sun Jun 5 16:18:31 2011 (r222832) @@ -52,7 +52,7 @@ #include #include "un-namespace.h" -#include "dirent_private.h" +#include "dirent-private.h" static FTSENT *fts_alloc(FTS *, char *, size_t); static FTSENT *fts_build(FTS *, int); Modified: soc2011/gk/ino64-head/lib/libc/gen/getcwd.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/getcwd.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/getcwd.c Sun Jun 5 16:18:31 2011 (r222832) @@ -46,7 +46,7 @@ #include #include "un-namespace.h" -#include "dirent_private.h" +#include "dirent-private.h" #define ISDOT(dp) \ (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \ Modified: soc2011/gk/ino64-head/lib/libc/gen/opendir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/opendir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/opendir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -46,7 +46,7 @@ #include #include "un-namespace.h" -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" static DIR * __opendir_common(int, const char *, int); Modified: soc2011/gk/ino64-head/lib/libc/gen/readdir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/readdir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/readdir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -42,7 +42,7 @@ #include "un-namespace.h" #include "libc_private.h" -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" /* Modified: soc2011/gk/ino64-head/lib/libc/gen/rewinddir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/rewinddir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/rewinddir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -36,7 +36,7 @@ #include #include -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" void Modified: soc2011/gk/ino64-head/lib/libc/gen/seekdir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/seekdir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/seekdir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -40,7 +40,7 @@ #include "un-namespace.h" #include "libc_private.h" -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" /* Modified: soc2011/gk/ino64-head/lib/libc/gen/telldir.c ============================================================================== --- soc2011/gk/ino64-head/lib/libc/gen/telldir.c Sun Jun 5 14:46:42 2011 (r222831) +++ soc2011/gk/ino64-head/lib/libc/gen/telldir.c Sun Jun 5 16:18:31 2011 (r222832) @@ -43,7 +43,7 @@ #include "un-namespace.h" #include "libc_private.h" -#include "dirent_private.h" +#include "dirent-private.h" #include "telldir.h" /*