* cygpath.cc (doit): Empty file ignored using option -i.
This commit is contained in:
parent
f062174ba5
commit
7b5c105b61
|
@ -1,3 +1,7 @@
|
|||
2002-01-15 Joerg Schaible <joerg.schaible@gmx.de>
|
||||
|
||||
* cygpath.cc (doit): Empty file ignored using option -i.
|
||||
|
||||
2002-01-15 Mark Bradshaw <bradshaw@crosswalk.com>
|
||||
|
||||
* mkpasswd.c (print_win_error): Add a new function.
|
||||
|
|
|
@ -160,10 +160,15 @@ doit (char *filename)
|
|||
{
|
||||
len = strlen (filename) + 100;
|
||||
if (len == 100)
|
||||
{
|
||||
if (!ignore_flag)
|
||||
{
|
||||
fprintf(stderr, "%s: can't convert empty path\n", prog_name);
|
||||
exit (1);
|
||||
}
|
||||
else
|
||||
exit (0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue