Changeset 39 for trunk/samba/examples


Ignore:
Timestamp:
May 27, 2007, 12:26:26 AM (18 years ago)
Author:
Paul Smedley
Message:

Upgrade source to 3.0.25a

Location:
trunk/samba/examples
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/examples/VFS/shadow_copy_test.c

    r1 r39  
    5959       
    6060        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                }
    6266                for (i=0;i<num;i++) {
    6367                        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  
    1818        tree \
    1919        testacl \
     20        testacl2 \
    2021        testbrowse \
    2122        testbrowse2 \
     
    3839testacl: testacl.o
    3940        @echo Linking testacl
     41        $(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ $< `gtk-config --libs` $(LIBSMBCLIENT) -lpopt
     42
     43testacl2: testacl2.o
     44        @echo Linking testacl2
    4045        $(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ $< `gtk-config --libs` $(LIBSMBCLIENT) -lpopt
    4146
  • trunk/samba/examples/pdb/README

    r1 r39  
    1515New passdb plugins should go into the samba lib directory, (/usr/lib/samba/pdb/
    1616for most distributions). An example would be: /usr/lib/samba/pdb/test.so
     17
     18Be aware that the SQL and XML based passdb modules have been removed since the
     193.0.23 release.  More information of external support for SQL passdb modules
     20can be found at http://pdbsql.sourceforge.net/.
Note: See TracChangeset for help on using the changeset viewer.