svn commit: samba r26633 - in branches/SAMBA_4_0/source/libnet: .

mimir at samba.org mimir at samba.org
Sun Dec 30 19:14:43 GMT 2007


Author: mimir
Date: 2007-12-30 19:14:43 +0000 (Sun, 30 Dec 2007)
New Revision: 26633

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=26633

Log:
A couple of fixes in comments.


Modified:
   branches/SAMBA_4_0/source/libnet/libnet_user.c


Changeset:
Modified: branches/SAMBA_4_0/source/libnet/libnet_user.c
===================================================================
--- branches/SAMBA_4_0/source/libnet/libnet_user.c	2007-12-30 19:13:50 UTC (rev 26632)
+++ branches/SAMBA_4_0/source/libnet/libnet_user.c	2007-12-30 19:14:43 UTC (rev 26633)
@@ -866,7 +866,7 @@
  *
  * @param ctx initialised libnet context
  * @param mem_ctx memory context of this call
- * @param r pointer to a structure containing arguments and results of this call
+ * @param r pointer to structure containing arguments and results of this call
  * @param monitor function pointer for receiving monitor messages
  * @return compostite context of this request
  */
@@ -969,7 +969,7 @@
 					continue_samr_domain_opened, s->monitor_fn);
 	if (!prereq_met) return;
 
-	/* prepare arguments od EnumDomainUsers call */
+	/* prepare arguments of EnumDomainUsers call */
 	s->user_list.in.domain_handle = &s->ctx->samr.handle;
 	s->user_list.in.max_size = s->page_size;
 	s->user_list.in.resume_handle = &s->resume_index;
@@ -1001,7 +1001,7 @@
 	c->status = libnet_DomainOpen_recv(ctx, s->ctx, c, &s->domain_open);
 	if (!composite_is_ok(c)) return;
 
-	/* prepare arguments od EnumDomainUsers call */
+	/* prepare arguments of EnumDomainUsers call */
 	s->user_list.in.domain_handle = &s->ctx->samr.handle;
 	s->user_list.in.max_size = s->page_size;
 	s->user_list.in.resume_handle = &s->resume_index;
@@ -1032,10 +1032,12 @@
 	c->status = dcerpc_ndr_request_recv(req);
 	if (!composite_is_ok(c)) return;
 
-	/* get the actual status of the rpc call result (instead of rpc layer status) */
+	/* get the actual status of the rpc call result
+	   (instead of rpc layer status) */
 	c->status = s->user_list.out.result;
 
-	/* we're interested in status "ok" as well as two enum-specific status codes */
+	/* we're interested in status "ok" as well as two
+	   enum-specific status codes */
 	if (NT_STATUS_IS_OK(c->status) ||
 	    NT_STATUS_EQUAL(c->status, STATUS_MORE_ENTRIES) ||
 	    NT_STATUS_EQUAL(c->status, NT_STATUS_NO_MORE_ENTRIES)) {
@@ -1082,7 +1084,7 @@
  *
  * @param c composite context returned by send request routine
  * @param mem_ctx memory context of this call
- * @param r pointer to a structure containing arguments and result of this call
+ * @param r pointer to structure containing arguments and result of this call
  * @return nt status
  */
 NTSTATUS libnet_UserList_recv(struct composite_context* c, TALLOC_CTX *mem_ctx,
@@ -1128,7 +1130,7 @@
  *
  * @param ctx initialised libnet context
  * @param mem_ctx memory context of this call
- * @param r pointer to a structure containing arguments and result of this call
+ * @param r pointer to structure containing arguments and result of this call
  * @return nt status
  */
 NTSTATUS libnet_UserList(struct libnet_context *ctx,



More information about the samba-cvs mailing list