diff options
Diffstat (limited to 'testsuite/libsmbclient/src/readdir')
-rw-r--r-- | testsuite/libsmbclient/src/readdir/readdir_5.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/libsmbclient/src/readdir/readdir_5.c b/testsuite/libsmbclient/src/readdir/readdir_5.c index d1a31ef9f0..de94c4698e 100644 --- a/testsuite/libsmbclient/src/readdir/readdir_5.c +++ b/testsuite/libsmbclient/src/readdir/readdir_5.c @@ -104,7 +104,7 @@ int main(int argc, char** argv) break; } - //printf("Name: %s\n",dirptr->name); + /* printf("Name: %s\n",dirptr->name); */ if ( j == 0 ) { if ( !(( strncmp(dirptr->name,".",1) == 0 )) ) @@ -127,7 +127,7 @@ int main(int argc, char** argv) memcpy(tmp_file_ptr,buff,strlen(buff)+4); strncat(tmp_file_ptr,".txt",4); - if ( !(( strcmp(dirptr->name,file_url) == 0 )) ) // make sure entries match + if ( !(( strcmp(dirptr->name,file_url) == 0 )) ) /* make sure entries match */ { err = 1; break; @@ -143,7 +143,7 @@ int main(int argc, char** argv) if ( ! err ) { - if ( (j - 2) != entry_num ) // Make sure that all entries created are counted and returned - minus . and .. + if ( (j - 2) != entry_num ) /* Make sure that all entries created are counted and returned - minus . and .. */ err = 1; } |