From ccd98b194353c06928402067ca48f3efea2cd813 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 8 Jan 2009 08:21:34 +0000 Subject: since cifs, /etc/samba/auth.xxx format has changed slightly: spaces are not allowed around "=" (at least that's what comment #6 of bug #42483 says) (backported from trunk) --- perl-install/fs/remote/smb.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/fs/remote/smb.pm b/perl-install/fs/remote/smb.pm index f1452f5a7..a406b8253 100644 --- a/perl-install/fs/remote/smb.pm +++ b/perl-install/fs/remote/smb.pm @@ -137,7 +137,7 @@ sub remove_bad_credentials { sub save_credentials { my ($credentials) = @_; my $file = $credentials->{file}; - output_with_perm("$::prefix$file", 0640, map { "$_ = $credentials->{$_}\n" } qw(username domain password)); + output_with_perm("$::prefix$file", 0640, map { "$_=$credentials->{$_}\n" } qw(username domain password)); } -- cgit v1.2.1