mirror of
https://github.com/FDOS/kernel.git
synced 2025-07-21 21:04:43 +02:00
Removed Debug printf
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@30 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
a6fa916054
commit
befddcad33
@ -36,6 +36,9 @@ static BYTE *fatdirRcsId = "$Id$";
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log$
|
* $Log$
|
||||||
|
* Revision 1.7 2000/06/01 06:46:57 jimtabor
|
||||||
|
* Removed Debug printf
|
||||||
|
*
|
||||||
* Revision 1.6 2000/06/01 06:37:38 jimtabor
|
* Revision 1.6 2000/06/01 06:37:38 jimtabor
|
||||||
* Read History for Changes
|
* Read History for Changes
|
||||||
*
|
*
|
||||||
@ -575,8 +578,9 @@ COUNT dos_findfirst(UCOUNT attr, BYTE FAR * name)
|
|||||||
Tname[65];
|
Tname[65];
|
||||||
|
|
||||||
fscopy(name, (BYTE FAR *)&Tname);
|
fscopy(name, (BYTE FAR *)&Tname);
|
||||||
|
/*
|
||||||
printf("ff %s", Tname);
|
printf("ff %s", Tname);
|
||||||
|
*/
|
||||||
/* The findfirst/findnext calls are probably the worst of the */
|
/* The findfirst/findnext calls are probably the worst of the */
|
||||||
/* DOS calls. They must work somewhat on the fly (i.e. - open */
|
/* DOS calls. They must work somewhat on the fly (i.e. - open */
|
||||||
/* but never close). Since we don't want to lose fnodes every */
|
/* but never close). Since we don't want to lose fnodes every */
|
||||||
@ -595,10 +599,11 @@ COUNT dos_findfirst(UCOUNT attr, BYTE FAR * name)
|
|||||||
i = ParseDosName((BYTE FAR *)&Tname, &nDrive, &LocalPath[2], local_name, local_ext, TRUE);
|
i = ParseDosName((BYTE FAR *)&Tname, &nDrive, &LocalPath[2], local_name, local_ext, TRUE);
|
||||||
if (i != SUCCESS)
|
if (i != SUCCESS)
|
||||||
return i;
|
return i;
|
||||||
|
/*
|
||||||
printf("\nff %s", Tname);
|
printf("\nff %s", Tname);
|
||||||
printf("ff %s", local_name);
|
printf("ff %s", local_name);
|
||||||
printf("ff %s\n", local_ext);
|
printf("ff %s\n", local_ext);
|
||||||
|
*/
|
||||||
if (nDrive >= 0)
|
if (nDrive >= 0)
|
||||||
{
|
{
|
||||||
dmp->dm_drive = nDrive;
|
dmp->dm_drive = nDrive;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user