*** empty log message ***

This commit is contained in:
Paul Tucker
1999-07-22 15:07:16 +00:00
parent c43d4580a9
commit b15aebfc9e
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
19990722-10:50 EDT Paul Tucker <ptucker@sympatico.ca>
*source/rtl/dir.c
* corrected hang when passing a second param to dirtest.
19990722-16:30 GMT+2 Ryszard Glab <rglab@imid.med.pl>
*source/compiler/harbour.y

View File

@@ -300,7 +300,11 @@ HARBOUR HB_DIRECTORY( void )
if( arg2_it && hb_parclen(2) >= 1)
{
strcpy(string, hb_parc(2));
while (*pos != '\0') *pos = toupper(*pos);
while (*pos != '\0')
{
*pos = toupper(*pos);
pos++;
}
pos = strchr(string,*aatrib);
}
else