diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2015-12-15 10:26:14 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2015-12-15 10:26:14 +0100 |
commit | 59aa9112f26e7027898fc67b6357379c310e0a38 (patch) | |
tree | 41671f4f1dfd94d90505a96e0fc37f85590b3e35 | |
parent | c1851db48ab84f2f45c11f2c9e451be40482fc1d (diff) | |
download | drakx-59aa9112f26e7027898fc67b6357379c310e0a38.tar drakx-59aa9112f26e7027898fc67b6357379c310e0a38.tar.gz drakx-59aa9112f26e7027898fc67b6357379c310e0a38.tar.bz2 drakx-59aa9112f26e7027898fc67b6357379c310e0a38.tar.xz drakx-59aa9112f26e7027898fc67b6357379c310e0a38.zip |
Suppress undefined comment in secrets line mga#10540
-rw-r--r-- | perl-install/fs/remote/davfs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/remote/davfs.pm b/perl-install/fs/remote/davfs.pm index 5044b6e60..890530cb9 100644 --- a/perl-install/fs/remote/davfs.pm +++ b/perl-install/fs/remote/davfs.pm @@ -25,7 +25,7 @@ sub save_credentials { @$credentials or return; output_with_perm(secrets_file(), 0600, - map { to_double_quoted($_->{mntpoint}, $_->{username}, $_->{password}, $_->{comment}) . "\n" } @$credentials); + map { to_double_quoted($_->{mntpoint}, $_->{username}, $_->{password}) . "\n" } @$credentials); } sub mountpoint_credentials_save { |