Changeset 740 for vendor/current/source3/smbd/ntquotas.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/smbd/ntquotas.c
r414 r740 19 19 20 20 #include "includes.h" 21 #include "smbd/smbd.h" 22 #include "../lib/util/util_pw.h" 23 #include "system/passwd.h" 24 #include "passdb/lookup_sid.h" 25 #include "libsmb/libsmb.h" 21 26 22 27 #undef DBGC_CLASS … … 72 77 } 73 78 74 int vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, DOM_SID*psid, SMB_NTQUOTA_STRUCT *qt)79 int vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt) 75 80 { 76 81 int ret; … … 110 115 } 111 116 112 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, DOM_SID*psid, SMB_NTQUOTA_STRUCT *qt)117 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt) 113 118 { 114 119 int ret; … … 176 181 SMB_NTQUOTA_STRUCT tmp_qt; 177 182 SMB_NTQUOTA_LIST *tmp_list_ent; 178 DOM_SIDsid;183 struct dom_sid sid; 179 184 180 185 ZERO_STRUCT(tmp_qt);
Note:
See TracChangeset
for help on using the changeset viewer.