summaryrefslogtreecommitdiff
path: root/packaging/RedHat
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2002-05-01 10:05:52 +0000
committerSimo Sorce <idra@samba.org>2002-05-01 10:05:52 +0000
commit58cf23f4da2b36f173fcb6a695ff6798be5c589b (patch)
tree4505202d9400425d54997644147f7e10e3853cd9 /packaging/RedHat
parent0f464fc79118161a97f45f428e4da1069a0be23d (diff)
downloadsamba-58cf23f4da2b36f173fcb6a695ff6798be5c589b.tar.gz
Had some environment problem to test the fix, so it would be really appreciated if packagers would be able to test their findsmb utility.
This fix is to make findsmb aware that the space a valid NetBIOS name character and to not get only the first part of the name as the NetBIOS name if it contains spaces. Simo.
Diffstat (limited to 'packaging/RedHat')
-rwxr-xr-xpackaging/RedHat/findsmb8
1 files changed, 6 insertions, 2 deletions
diff --git a/packaging/RedHat/findsmb b/packaging/RedHat/findsmb
index 986c2481779..04bc6080508 100755
--- a/packaging/RedHat/findsmb
+++ b/packaging/RedHat/findsmb
@@ -73,7 +73,10 @@ foreach $ip (@ipaddrs) # loop through each IP address found
$name = "unknown nis name";
}
} else {
- /(\S+)/;
+# The Netbios name can contain lot of characters also '<' '>'
+# and spaces. The follwing cure inside name space but not
+# names starting or ending with spaces
+ /(.{1,15})\s+<00>\s+/;
$name = $1;
}
@@ -103,7 +106,8 @@ foreach $ip (@ipaddrs) # loop through each IP address found
@name = grep(/<00> - <GROUP>/,@nmblookup);
$_ = @name[0];
if ($_) {
- /(\S+)/;
+# Same as before for space and characters
+ /(.{1,15})\s+<00>\s+/;
$_ = "[$1]";
} else {
$_ = "Unknown Workgroup";