Changeset 84 for trunk/lib/smb_deps.c
- Timestamp:
- 01/19/07 09:52:25 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/smb_deps.c
r65 r84 101 101 converts this to real GMT. 102 102 ****************************************************************************/ 103 time_t nt_time_to_unix( NTTIME *nt)103 time_t nt_time_to_unix(const NTTIME* nt) 104 104 { 105 105 double d; … … 316 316 Stream an array of uint32s. Length is number of uint32s. 317 317 ********************************************************************/ 318 bool prs_uint32s( bool charmode,const char *name, prs_struct *ps,318 bool prs_uint32s(const char *name, prs_struct *ps, 319 319 int depth, uint32 *data32s, int len) 320 320 { … … 462 462 Stream an array of uint8s. Length is number of uint8s. 463 463 ********************************************************************/ 464 bool prs_uint8s( bool charmode,const char *name, prs_struct *ps, int depth,464 bool prs_uint8s(const char *name, prs_struct *ps, int depth, 465 465 uint8* data8s, int len) 466 466 { … … 526 526 return false; 527 527 528 if(!prs_uint8s ( false,"data ", ps, depth,528 if(!prs_uint8s ("data ", ps, depth, 529 529 uuid->clock_seq, sizeof(uuid->clock_seq))) 530 530 return false; 531 531 532 if(!prs_uint8s ( false,"data ", ps, depth, uuid->node, sizeof(uuid->node)))532 if(!prs_uint8s ("data ", ps, depth, uuid->node, sizeof(uuid->node))) 533 533 return false; 534 534 … … 587 587 sid->num_auths = MAXSUBAUTHS; 588 588 589 if(!prs_uint32s( false,"sub_auths ", ps, depth,589 if(!prs_uint32s("sub_auths ", ps, depth, 590 590 sid->sub_auths, sid->num_auths)) 591 591 { return false; }
Note: See TracChangeset
for help on using the changeset viewer.