diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-03 08:21:11 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2006-03-03 08:21:11 +0000 |
commit | 7a93180cafc3f3ccdf66260c41bb879e21c7b40f (patch) | |
tree | 1df1ba22f228be9305bda1feb9f96b749c0a42d7 /source/include | |
parent | 2dcf33dfe98e71392e5ca2718bec2f0839a1ebbc (diff) | |
download | samba-7a93180cafc3f3ccdf66260c41bb879e21c7b40f.tar.gz samba-7a93180cafc3f3ccdf66260c41bb879e21c7b40f.tar.xz samba-7a93180cafc3f3ccdf66260c41bb879e21c7b40f.zip |
r13811: nicer format...
metze
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/includes.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/source/include/includes.h b/source/include/includes.h index 2d685b8ba71..83bc9569cb5 100644 --- a/source/include/includes.h +++ b/source/include/includes.h @@ -77,10 +77,22 @@ /* protocol types. It assumes that higher protocols include lower protocols as subsets. FIXME: Move to one of the smb-specific headers */ -enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1}; +enum protocol_types { + PROTOCOL_NONE, + PROTOCOL_CORE, + PROTOCOL_COREPLUS, + PROTOCOL_LANMAN1, + PROTOCOL_LANMAN2, + PROTOCOL_NT1 +}; /* passed to br lock code. FIXME: Move to one of the smb-specific headers */ -enum brl_type {READ_LOCK, WRITE_LOCK, PENDING_READ_LOCK, PENDING_WRITE_LOCK}; +enum brl_type { + READ_LOCK, + WRITE_LOCK, + PENDING_READ_LOCK, + PENDING_WRITE_LOCK +}; #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2) #include "lib/replace/replace.h" |