summaryrefslogtreecommitdiff
path: root/testsuite/libsmbclient/src/readdir
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-04-03 02:51:42 +0000
committerTim Potter <tpot@samba.org>2002-04-03 02:51:42 +0000
commit62946015c0b0f72dc33b7d19527c47db1fc5312b (patch)
tree8e7769aab7fc7a582d1915878985c4d7ea1805c1 /testsuite/libsmbclient/src/readdir
parentf624d6f3aef760f16570e030966eb4dc07fd81ec (diff)
downloadsamba-62946015c0b0f72dc33b7d19527c47db1fc5312b.tar.gz
samba-62946015c0b0f72dc33b7d19527c47db1fc5312b.tar.bz2
samba-62946015c0b0f72dc33b7d19527c47db1fc5312b.zip
Fixed C++ comments.
(This used to be commit ca56042c032e95ff3e1e40ae9e89a0b847d83081)
Diffstat (limited to 'testsuite/libsmbclient/src/readdir')
-rw-r--r--testsuite/libsmbclient/src/readdir/readdir_5.c6
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;
}