summaryrefslogtreecommitdiff
path: root/packaging/Mandrake
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/Mandrake
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/Mandrake')
-rwxr-xr-xpackaging/Mandrake/findsmb4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/Mandrake/findsmb b/packaging/Mandrake/findsmb
index 986c248177..f70d18dcbd 100755
--- a/packaging/Mandrake/findsmb
+++ b/packaging/Mandrake/findsmb
@@ -73,7 +73,7 @@ foreach $ip (@ipaddrs) # loop through each IP address found
$name = "unknown nis name";
}
} else {
- /(\S+)/;
+ /(.{1,15})\s+<00>\s+/;
$name = $1;
}
@@ -103,7 +103,7 @@ foreach $ip (@ipaddrs) # loop through each IP address found
@name = grep(/<00> - <GROUP>/,@nmblookup);
$_ = @name[0];
if ($_) {
- /(\S+)/;
+ /(.{1,15})\s+<00>\s+/;
$_ = "[$1]";
} else {
$_ = "Unknown Workgroup";