Ignore:
Timestamp:
Jun 29, 2007, 1:34:14 PM (18 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.25b

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/samba/source/client/client.c

    r30 r44  
    39163916                if (!service_opt && poptPeekArg(pc)) {
    39173917                        pstrcpy(service, poptGetArg(pc));
    3918                         /* Convert any '/' characters in the service name to '\' characters */
    3919                         string_replace(service, '/','\\');
    3920 
    3921                         if (count_chars(service,'\\') < 3) {
    3922                                 d_printf("\n%s: Not enough '\\' characters in service\n",service);
    3923                                 poptPrintUsage(pc, stderr, 0);
    3924                                 exit(1);
    3925                         }
    39263918                        service_opt = True;
    39273919                }
     
    40114003        if (!service_opt && poptPeekArg(pc)) {
    40124004                pstrcpy(service, poptGetArg(pc));
    4013                 /* Convert any '/' characters in the service name to '\' characters */
    4014                 string_replace(service, '/','\\');
    4015 
    4016                 if (count_chars(service,'\\') < 3) {
    4017                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
    4018                         poptPrintUsage(pc, stderr, 0);
    4019                         exit(1);
    4020                 }
    40214005                service_opt = True;
    40224006        }
     
    40574041       
    40584042        load_interfaces();
     4043
     4044        if (service_opt) {
     4045                /* Convert any '/' characters in the service name to '\' characters */
     4046                string_replace(service, '/','\\');
     4047                if (count_chars(service,'\\') < 3) {
     4048                        d_printf("\n%s: Not enough '\\' characters in service\n",service);
     4049                        poptPrintUsage(pc, stderr, 0);
     4050                        exit(1);
     4051                }
     4052        }
    40594053       
    40604054        if ( strlen(new_workgroup) != 0 )
Note: See TracChangeset for help on using the changeset viewer.