diff options
author | Rafal Szczesniak <mimir@samba.org> | 2005-09-29 22:36:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:39:13 -0500 |
commit | 65271095d0aaf3b4fb10ae5639b89ae31ba80774 (patch) | |
tree | 5ccf812b61e8f0d7ab2563ec586d89c8fb47b694 | |
parent | 2255f0b483676f178f4307252ef750645695d954 (diff) | |
download | samba-65271095d0aaf3b4fb10ae5639b89ae31ba80774.tar.gz samba-65271095d0aaf3b4fb10ae5639b89ae31ba80774.tar.bz2 samba-65271095d0aaf3b4fb10ae5639b89ae31ba80774.zip |
r10635: Formatting for better readability.
rafal
(This used to be commit 7b3a4096b5922e4a98ea0a74c0b92bc10d18cddd)
-rw-r--r-- | source4/libcli/composite/composite.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/libcli/composite/composite.h b/source4/libcli/composite/composite.h index 83857edd14..1e6e9f5dc8 100644 --- a/source4/libcli/composite/composite.h +++ b/source4/libcli/composite/composite.h @@ -32,10 +32,10 @@ /* a composite call moves between the following 3 states. */ -enum composite_state {COMPOSITE_STATE_INIT, /* we are creating the request */ - COMPOSITE_STATE_IN_PROGRESS, /* the request is in the outgoing socket Q */ - COMPOSITE_STATE_DONE, /* the request is received by the caller finished */ - COMPOSITE_STATE_ERROR}; /* a packet or transport level error has occurred */ +enum composite_state { COMPOSITE_STATE_INIT, /* we are creating the request */ + COMPOSITE_STATE_IN_PROGRESS, /* the request is in the outgoing socket Q */ + COMPOSITE_STATE_DONE, /* the request is received by the caller finished */ + COMPOSITE_STATE_ERROR }; /* a packet or transport level error has occurred */ /* the context of one "composite" call */ struct composite_context { |