Changeset 39 for trunk/samba/examples
- Timestamp:
- May 27, 2007, 12:26:26 AM (18 years ago)
- Location:
- trunk/samba/examples
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/samba/examples/VFS/shadow_copy_test.c
r1 r39 59 59 60 60 if (labels) { 61 shadow_copy_data->labels = TALLOC_ZERO_ARRAY(shadow_copy_data->mem_ctx,SHADOW_COPY_LABEL,num); 61 if (num) { 62 shadow_copy_data->labels = TALLOC_ZERO_ARRAY(shadow_copy_data->mem_ctx,SHADOW_COPY_LABEL,num); 63 } else { 64 shadow_copy_data->labels = NULL; 65 } 62 66 for (i=0;i<num;i++) { 63 67 snprintf(shadow_copy_data->labels[i], sizeof(SHADOW_COPY_LABEL), "@GMT-2003.08.05-12.%02u.00",i); -
trunk/samba/examples/libsmbclient/Makefile
r26 r39 18 18 tree \ 19 19 testacl \ 20 testacl2 \ 20 21 testbrowse \ 21 22 testbrowse2 \ … … 38 39 testacl: testacl.o 39 40 @echo Linking testacl 41 $(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ $< `gtk-config --libs` $(LIBSMBCLIENT) -lpopt 42 43 testacl2: testacl2.o 44 @echo Linking testacl2 40 45 $(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ $< `gtk-config --libs` $(LIBSMBCLIENT) -lpopt 41 46 -
trunk/samba/examples/pdb/README
r1 r39 15 15 New passdb plugins should go into the samba lib directory, (/usr/lib/samba/pdb/ 16 16 for most distributions). An example would be: /usr/lib/samba/pdb/test.so 17 18 Be aware that the SQL and XML based passdb modules have been removed since the 19 3.0.23 release. More information of external support for SQL passdb modules 20 can be found at http://pdbsql.sourceforge.net/.
Note:
See TracChangeset
for help on using the changeset viewer.