+ case ENOENT:
+ case EHOSTDOWN:
+ /* If this is so old as to not support *SMBSERVER called
+ name for RFC1001, we can get this error . We also
+ need to uppercase the sharename for these old servers
+ so fall through to retry code below. On retry the
+ code will add "servern=" */
+ tmp = servern;
+ if((retry == 0) && tmp) {
+ retry_with_rfc1001name = 1;
+ while (*tmp && !(((unsigned char)tmp[0]) & 0x80)) {
+ *tmp = toupper((unsigned char)*tmp);
+ tmp++;
+ }
+ printf("Adding Netbios name of server to mount based on server part of UNC name\n");
+ }