Changeset 424 for branches


Ignore:
Timestamp:
Mar 11, 2010, 9:19:22 AM (15 years ago)
Author:
Herwig Bauernfeind
Message:

_divers fix for OBJECT_NOT_FOUND error discovered after Ticket #126 fix

Location:
branches/samba-3.0
Files:
1 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/script/findsmb

    r392 r424  
    1 #!e:/Perl/bin/perl.exe
     1#!u:/Perl/bin/perl.exe
    22#
    33# Prints info on all smb responding machines on a subnet.
     
    2121#
    2222
    23 $SAMBABIN = "/usr/local/samba/bin";
     23$SAMBABIN = "/samba/bin";
    2424
    2525for ($i = 0; $i < 2; $i++) {    # test for -d and -r options
  • branches/samba-3.0/source/smbadduser

    r392 r424  
    44#
    55
    6 prefix=/usr/local/samba
     6prefix=/samba
    77exec_prefix=${prefix}
    88LIBDIR=${exec_prefix}/lib
  • branches/samba-3.0/source/smbd/vfs.c

    r39 r424  
    889889        DEBUG(10,("reduce_name realpath [%s] -> [%s]\n", fname, resolved_name));
    890890
    891         if (*resolved_name != '/') {
     891        if (*resolved_name != '/' && resolved_name[1] != ':') {
    892892                DEBUG(0,("reduce_name: realpath doesn't return absolute paths !\n"));
    893893                if (free_resolved_name) {
Note: See TracChangeset for help on using the changeset viewer.