Changeset 745 for trunk/server/testsuite
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 4 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/testsuite/libsmbclient/src/Makefile
r414 r745 1 1 CC = gcc 2 CFLAGS = -Wall -W -O2 -g -I../../../source /include3 LFLAGS = -L../../../source /bin4 5 LIBS= -L/usr/lib -lsmbclient -ltalloc 2 CFLAGS = -Wall -W -O2 -g -I../../../source3/include 3 LFLAGS = -L../../../source3/bin 4 5 LIBS= -L/usr/lib -lsmbclient -ltalloc -ltdb -lwbclient 6 6 INCPATH= -I. -I/usr/include -I./include 7 7 BIN_DIR=bin -
trunk/server/testsuite/printing/psec.c
r414 r745 147 147 { 148 148 SEC_ACCESS sa; 149 DOM_SIDsid;149 struct dom_sid sid; 150 150 uint32 mask; 151 151 uint8 type, flags; … … 257 257 int psec_setsec(char *printer) 258 258 { 259 DOM_SIDuser_sid, group_sid;259 struct dom_sid user_sid, group_sid; 260 260 SEC_ACE *ace_list = NULL; 261 261 SEC_ACL *dacl = NULL; … … 305 305 uint32 ace_mask; 306 306 fstring sidstr; 307 DOM_SIDsid;307 struct dom_sid sid; 308 308 SEC_ACCESS sa; 309 309 -
trunk/server/testsuite/smbd/se_access_check_utils.c
r414 r745 22 22 #include "se_access_check_utils.h" 23 23 24 void char_to_sid( DOM_SID*sid, char *sid_str)24 void char_to_sid(struct dom_sid *sid, char *sid_str) 25 25 { 26 26 /* If it looks like a SID, call string_to_sid() else look it up … … 66 66 while(ace_list->sid) { 67 67 SEC_ACCESS sa; 68 DOM_SIDsid;68 struct dom_sid sid; 69 69 70 70 /* Create memory for new ACE */ … … 100 100 char *owner_sid, char *group_sid) 101 101 { 102 DOM_SIDthe_owner_sid, the_group_sid;102 struct dom_sid the_owner_sid, the_group_sid; 103 103 SEC_ACL *the_dacl, *the_sacl; 104 104 SEC_DESC *result;
Note:
See TracChangeset
for help on using the changeset viewer.