Changeset 581 for vendor/current/source3
- Timestamp:
- Jun 28, 2011, 9:27:20 AM (14 years ago)
- Location:
- vendor/current/source3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/VERSION
r478 r581 26 26 SAMBA_VERSION_MAJOR=3 27 27 SAMBA_VERSION_MINOR=5 28 SAMBA_VERSION_RELEASE= 428 SAMBA_VERSION_RELEASE=5 29 29 30 30 ######################################################## -
vendor/current/source3/include/version.h
r478 r581 2 2 #define SAMBA_VERSION_MAJOR 3 3 3 #define SAMBA_VERSION_MINOR 5 4 #define SAMBA_VERSION_RELEASE 45 #define SAMBA_VERSION_OFFICIAL_STRING "3.5. 4"4 #define SAMBA_VERSION_RELEASE 5 5 #define SAMBA_VERSION_OFFICIAL_STRING "3.5.5" 6 6 #ifdef SAMBA_VERSION_VENDOR_FUNCTION 7 7 # define SAMBA_VERSION_STRING SAMBA_VERSION_VENDOR_FUNCTION -
vendor/current/source3/lib/util_sid.c
r414 r581 409 409 sid->sid_rev_num = CVAL(inbuf, 0); 410 410 sid->num_auths = CVAL(inbuf, 1); 411 if (sid->num_auths > MAXSUBAUTHS) { 412 return false; 413 } 411 414 memcpy(sid->id_auth, inbuf+2, 6); 412 415 if (len < 8 + sid->num_auths*4) -
vendor/current/source3/libads/ldap.c
r427 r581 2142 2142 DOM_SID sid; 2143 2143 fstring tmp; 2144 sid_parse(values[i]->bv_val, values[i]->bv_len, &sid); 2144 if (!sid_parse(values[i]->bv_val, values[i]->bv_len, &sid)) { 2145 continue; 2146 } 2145 2147 printf("%s: %s\n", field, sid_to_fstring(tmp, &sid)); 2146 2148 } -
vendor/current/source3/libsmb/cliquota.c
r414 r581 112 112 #endif /* LARGE_SMB_OFF_T */ 113 113 114 sid_parse(rdata+40,sid_len,&qt.sid); 114 if (!sid_parse(rdata+40,sid_len,&qt.sid)) { 115 return false; 116 } 115 117 116 118 qt.qtype = SMB_USER_QUOTA_TYPE; -
vendor/current/source3/smbd/nttrans.c
r414 r581 2162 2162 /*unknown = IVAL(pdata,0);*/ 2163 2163 2164 sid_parse(pdata+4,sid_len,&sid); 2164 if (!sid_parse(pdata+4,sid_len,&sid)) { 2165 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2166 return; 2167 } 2168 2165 2169 DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid))); 2166 2170 … … 2418 2422 } 2419 2423 2420 sid_parse(pdata+8,sid_len,&sid); 2424 if (!sid_parse(pdata+8,sid_len,&sid)) { 2425 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2426 return; 2427 } 2421 2428 2422 2429 if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) { … … 2599 2606 #endif /* LARGE_SMB_OFF_T */ 2600 2607 2601 sid_parse(pdata+40,sid_len,&sid); 2608 if (!sid_parse(pdata+40,sid_len,&sid)) { 2609 reply_nterror(req, NT_STATUS_INVALID_PARAMETER); 2610 return; 2611 } 2612 2602 2613 DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid))); 2603 2614
Note:
See TracChangeset
for help on using the changeset viewer.