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
commit9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5 (patch)
tree2f0f15646dccd6d270e2f6b5ab9f84ac05ddc99d /packaging/RedHat
parente8e866867e08c3784e379682325501972795bf4b (diff)
downloadsamba-9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5.tar.gz
samba-9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5.tar.bz2
samba-9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5.zip
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. (This used to be commit 58cf23f4da2b36f173fcb6a695ff6798be5c589b)
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 986c248177..04bc608050 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";