summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-07-03 04:09:09 +0000
committerTim Potter <tpot@samba.org>2001-07-03 04:09:09 +0000
commit75e33b78036438b2a07eed3cc5a1e591103b7c9c (patch)
treed086554a17cec1197279faceea4f4ac6b096c271 /source3
parent592e237876f785716e8c677e52827b90644ec3cb (diff)
downloadsamba-75e33b78036438b2a07eed3cc5a1e591103b7c9c.tar.gz
samba-75e33b78036438b2a07eed3cc5a1e591103b7c9c.tar.bz2
samba-75e33b78036438b2a07eed3cc5a1e591103b7c9c.zip
Fixed incorrect comment for cli_NetServerEnum()
(This used to be commit 0a505e50a5059930de6583918f25ef84af53de0e)
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/clirap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c
index 5050caf073..253d192aba 100644
--- a/source3/libsmb/clirap.c
+++ b/source3/libsmb/clirap.c
@@ -203,11 +203,11 @@ int cli_RNetShareEnum(struct cli_state *cli, void (*fn)(const char *, uint32, co
/****************************************************************************
-call a NetServerEnum for the specified workgroup and servertype mask.
-This function then calls the specified callback function for each name returned.
+call a NetServerEnum for the specified workgroup and servertype mask. This
+function then calls the specified callback function for each name returned.
-The callback function takes 3 arguments: the machine name, the server type and
-the comment.
+The callback function takes 4 arguments: the machine name, the server type,
+the comment and a state pointer.
****************************************************************************/
BOOL cli_NetServerEnum(struct cli_state *cli, char *workgroup, uint32 stype,
void (*fn)(const char *, uint32, const char *, void *),