mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-03-03 13:35:46 +08:00
* cygcheck.cc (handle_unique_object_name): Avoid a compiler warning.
(dump_sysinfo): Ditto. * loadlib.h (_load_sys_library): Mark as used, to avoid a compiler warning. * path.cc (oopt): Gurad with !FSTAB_ONLY to avoid a compiler warning. (read_flags): Ditto.
This commit is contained in:
parent
91d3057085
commit
d7d8e7ce07
@ -1,3 +1,12 @@
|
|||||||
|
2011-02-29 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygcheck.cc (handle_unique_object_name): Avoid a compiler warning.
|
||||||
|
(dump_sysinfo): Ditto.
|
||||||
|
* loadlib.h (_load_sys_library): Mark as used, to avoid a compiler
|
||||||
|
warning.
|
||||||
|
* path.cc (oopt): Gurad with !FSTAB_ONLY to avoid a compiler warning.
|
||||||
|
(read_flags): Ditto.
|
||||||
|
|
||||||
2011-02-28 Corinna Vinschen <corinna@vinschen.de>
|
2011-02-28 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* setfacl.c (strchrnul): Drop local implementation.
|
* setfacl.c (strchrnul): Drop local implementation.
|
||||||
|
@ -1304,7 +1304,7 @@ int
|
|||||||
handle_unique_object_name (int opt, char *path)
|
handle_unique_object_name (int opt, char *path)
|
||||||
{
|
{
|
||||||
HANDLE fh, fm;
|
HANDLE fh, fm;
|
||||||
void *haystack;
|
void *haystack = NULL;
|
||||||
|
|
||||||
if (!path || !*path)
|
if (!path || !*path)
|
||||||
usage (stderr, 1);
|
usage (stderr, 1);
|
||||||
@ -1758,7 +1758,7 @@ dump_sysinfo ()
|
|||||||
continue;
|
continue;
|
||||||
char drive[4], name[200], fsname[200];
|
char drive[4], name[200], fsname[200];
|
||||||
DWORD serno = 0, maxnamelen = 0, flags = 0;
|
DWORD serno = 0, maxnamelen = 0, flags = 0;
|
||||||
name[0] = name[0] = fsname[0] = 0;
|
name[0] = fsname[0] = 0;
|
||||||
sprintf (drive, "%c:\\", i + 'a');
|
sprintf (drive, "%c:\\", i + 'a');
|
||||||
/* Report all errors, except if the Volume is ERROR_NOT_READY.
|
/* Report all errors, except if the Volume is ERROR_NOT_READY.
|
||||||
ERROR_NOT_READY is returned when removeable media drives are empty
|
ERROR_NOT_READY is returned when removeable media drives are empty
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* loadlib.h
|
/* loadlib.h
|
||||||
|
|
||||||
Copyright 2010 Red Hat, Inc.
|
Copyright 2010, 2011 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
@ -18,6 +18,8 @@
|
|||||||
full path. This doesn't work for loadling cygwin1.dll. For this case,
|
full path. This doesn't work for loadling cygwin1.dll. For this case,
|
||||||
instead of prepending the path, make sure that the CWD is removed from
|
instead of prepending the path, make sure that the CWD is removed from
|
||||||
the DLL search path, if possible (XP SP1++, Vista++). */
|
the DLL search path, if possible (XP SP1++, Vista++). */
|
||||||
|
static HMODULE _load_sys_library (const wchar_t *dll) __attribute__ ((used));
|
||||||
|
|
||||||
static HMODULE
|
static HMODULE
|
||||||
_load_sys_library (const wchar_t *dll)
|
_load_sys_library (const wchar_t *dll)
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
/* path.cc
|
/* path.cc
|
||||||
|
|
||||||
Copyright 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010 Red Hat, Inc.
|
Copyright 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010,
|
||||||
|
2011 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
@ -299,6 +300,7 @@ conv_fstab_spaces (char *field)
|
|||||||
return field;
|
return field;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef FSTAB_ONLY
|
||||||
static struct opt
|
static struct opt
|
||||||
{
|
{
|
||||||
const char *name;
|
const char *name;
|
||||||
@ -353,6 +355,7 @@ read_flags (char *options, unsigned &flags)
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool
|
bool
|
||||||
from_fstab_line (mnt_t *m, char *line, bool user)
|
from_fstab_line (mnt_t *m, char *line, bool user)
|
||||||
@ -579,7 +582,6 @@ read_mounts ()
|
|||||||
DWORD len;
|
DWORD len;
|
||||||
WCHAR path[32768];
|
WCHAR path[32768];
|
||||||
PWCHAR path_end;
|
PWCHAR path_end;
|
||||||
HMODULE h;
|
|
||||||
|
|
||||||
for (mnt_t *m1 = mount_table; m1->posix; m1++)
|
for (mnt_t *m1 = mount_table; m1->posix; m1++)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user