summaryrefslogtreecommitdiffstats
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
commit0a505e50a5059930de6583918f25ef84af53de0e (patch)
treeadf4e33e9328385c9cd6c5f59e7ac4d05c1a2899
parentbc6160a48282f026845476e632fe365ff2fd63d2 (diff)
downloadsamba-0a505e50a5059930de6583918f25ef84af53de0e.tar.gz
samba-0a505e50a5059930de6583918f25ef84af53de0e.tar.xz
samba-0a505e50a5059930de6583918f25ef84af53de0e.zip
Fixed incorrect comment for cli_NetServerEnum()
-rw-r--r--source/libsmb/clirap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/libsmb/clirap.c b/source/libsmb/clirap.c
index 5050caf0732..253d192aba6 100644
--- a/source/libsmb/clirap.c
+++ b/source/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 *),