Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package davfs2 for openSUSE:Factory checked in at 2021-12-21 18:40:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/davfs2 (Old) and /work/SRC/openSUSE:Factory/.davfs2.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "davfs2" Tue Dec 21 18:40:37 2021 rev:6 rq:941700 version:1.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/davfs2/davfs2.changes 2020-11-26 23:16:14.757077302 +0100 +++ /work/SRC/openSUSE:Factory/.davfs2.new.2520/davfs2.changes 2021-12-21 18:41:03.893897175 +0100 @@ -1,0 +2,8 @@ +Mon Dec 20 21:07:00 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 1.6.1: + * Add Neon version 0.32. + * mount.davfs.c, get_options: Ignore all unknown options. + * mount_davfs.c, write_mtab_entry: Add option _netdev to utab-entry. + +------------------------------------------------------------------- Old: ---- davfs2-1.6.0.tar.gz davfs2-1.6.0.tar.gz.sig New: ---- davfs2-1.6.1.tar.gz davfs2-1.6.1.tar.gz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ davfs2.spec ++++++ --- /var/tmp/diff_new_pack.Pzf3Rn/_old 2021-12-21 18:41:04.465897688 +0100 +++ /var/tmp/diff_new_pack.Pzf3Rn/_new 2021-12-21 18:41:04.469897692 +0100 @@ -1,7 +1,7 @@ # # spec file for package davfs2 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,14 +17,14 @@ Name: davfs2 -Version: 1.6.0 +Version: 1.6.1 Release: 0 Summary: FUSE-Filesystem to access WebDAV servers License: GPL-3.0-only Group: System/Filesystems -URL: http://savannah.nongnu.org/projects/%{name} -Source0: http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz -Source1: http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig +URL: https://savannah.nongnu.org/projects/%{name} +Source0: https://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz +Source1: https://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig Source2: %{name}-rpmlintrc Source3: memberlist-gpgkeys.gpg BuildRequires: automake >= 1.16 ++++++ davfs2-1.6.0.tar.gz -> davfs2-1.6.1.tar.gz ++++++ ++++ 3336 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/ChangeLog new/davfs2-1.6.1/ChangeLog --- old/davfs2-1.6.0/ChangeLog 2020-08-07 10:32:22.000000000 +0200 +++ new/davfs2-1.6.1/ChangeLog 2021-10-31 16:54:11.000000000 +0100 @@ -1,6 +1,21 @@ ChangeLog for davfs2 -------------------- +2021-10-31 Werner Baumann (werner.baum...@onlinehome.de) + * Release version 1.6.1 + +2021-10-24 Werner Baumann (werner.baum...@onlinehome.de) + * configure.ac: + Add Neon version 0.32. + +2021-04-08 Werner Baumann (werner.baum...@onlinehome.de) + * mount.davfs.c, get_options: + Ignore all unknown options. + +2021-01-27 Werner Baumann (werner.baum...@onlinehome.de) + * mount_davfs.c, write_mtab_entry: + Add option _netdev to utab-entry. + 2020-08-07 Werner Baumann (werner.baum...@onlinehome.de) * Release version 1.6.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/config/compile new/davfs2-1.6.1/config/compile --- old/davfs2-1.6.0/config/compile 2020-08-07 10:32:49.000000000 +0200 +++ new/davfs2-1.6.1/config/compile 2021-10-31 16:55:24.000000000 +0100 @@ -3,7 +3,7 @@ scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # Written by Tom Tromey <tro...@cygnus.com>. # # This program is free software; you can redistribute it and/or modify @@ -53,7 +53,7 @@ MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -67,7 +67,7 @@ mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin/*) + cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/config/missing new/davfs2-1.6.1/config/missing --- old/davfs2-1.6.0/config/missing 2020-08-07 10:32:49.000000000 +0200 +++ new/davfs2-1.6.1/config/missing 2021-10-31 16:55:24.000000000 +0100 @@ -3,7 +3,7 @@ scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2018 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <pin...@iro.umontreal.ca>, 1996. # This program is free software; you can redistribute it and/or modify diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/configure.ac new/davfs2-1.6.1/configure.ac --- old/davfs2-1.6.0/configure.ac 2020-08-04 16:50:36.000000000 +0200 +++ new/davfs2-1.6.1/configure.ac 2021-10-31 16:52:44.000000000 +0100 @@ -21,7 +21,7 @@ AC_PREREQ(2.69) -AC_INIT(davfs2, 1.6.0, http://savannah.nongnu.org/projects/davfs2) +AC_INIT(davfs2, 1.6.1, http://savannah.nongnu.org/projects/davfs2) AC_CONFIG_SRCDIR([src/cache.c]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE @@ -36,7 +36,7 @@ # Checks for libraries. AM_GNU_GETTEXT_VERSION(0.19.8) AM_GNU_GETTEXT([external]) -NE_REQUIRE_VERSIONS([0], [27 28 29 30 31]) +NE_REQUIRE_VERSIONS([0], [27 28 29 30 31 32]) DAV_CHECK_NEON # Checks for header files. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/man/de/mount.davfs.8 new/davfs2-1.6.1/man/de/mount.davfs.8 --- old/davfs2-1.6.0/man/de/mount.davfs.8 2020-08-07 10:32:46.000000000 +0200 +++ new/davfs2-1.6.1/man/de/mount.davfs.8 2021-10-31 16:55:21.000000000 +0100 @@ -218,10 +218,6 @@ \fIps\fP f??r jedermann sichtbar. .br Voreingestellt: kein username -.br -\fBExperimentell:\fP Diese Option ist experimentell und wird m??glicherweise -wieder entfernt. Falls du sie erfolgreich verwendest und behalten m??chtest, -sende bitte einen kurzen Bericht. .RE diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/man/de/mount.davfs.8.po new/davfs2-1.6.1/man/de/mount.davfs.8.po --- old/davfs2-1.6.0/man/de/mount.davfs.8.po 2020-08-07 10:32:45.000000000 +0200 +++ new/davfs2-1.6.1/man/de/mount.davfs.8.po 2021-10-31 16:55:20.000000000 +0100 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: davfs2 1.5.4\n" -"POT-Creation-Date: 2020-08-06 17:59+0200\n" -"PO-Revision-Date: 2020-08-03 17:18+0200\n" +"POT-Creation-Date: 2021-01-28 17:39+0100\n" +"PO-Revision-Date: 2021-01-28 17:42+0200\n" "Last-Translator: Werner Baumann <werner.baum...@onlinehome.de>\n" "Language-Team: \n" "Language: \n" @@ -38,27 +38,27 @@ # type: SH #. type: SH -#: davfs2.conf.5:575 mount.davfs.8:551 umount.davfs.8:79 +#: davfs2.conf.5:575 mount.davfs.8:548 umount.davfs.8:79 #, no-wrap msgid "AUTHORS" msgstr "AUTOREN" # type: SH #. type: SH -#: davfs2.conf.5:581 mount.davfs.8:568 umount.davfs.8:84 +#: davfs2.conf.5:581 mount.davfs.8:565 umount.davfs.8:84 #, no-wrap msgid "DAVFS2 HOME" msgstr "DAVFS2 HOME" # type: TH #. type: Plain text -#: davfs2.conf.5:584 mount.davfs.8:571 umount.davfs.8:87 +#: davfs2.conf.5:584 mount.davfs.8:568 umount.davfs.8:87 msgid "@PACKAGE_BUGREPORT@" msgstr "@PACKAGE_BUGREPORT@" # type: SH #. type: SH -#: davfs2.conf.5:586 mount.davfs.8:573 umount.davfs.8:89 +#: davfs2.conf.5:586 mount.davfs.8:570 umount.davfs.8:89 #, no-wrap msgid "SEE ALSO" msgstr "SIEHE AUCH" @@ -672,27 +672,16 @@ msgid "Default: no username." msgstr "Voreingestellt: kein username" -# type: Plain text -#. type: Plain text -#: mount.davfs.8:214 -msgid "" -"B<Experimental:> This option is experimental and might be removed. If you " -"think it useful and successfully use it please send a short report." -msgstr "" -"B<Experimentell:> Diese Option ist experimentell und wird m??glicherweise " -"wieder entfernt. Falls du sie erfolgreich verwendest und behalten m??chtest, " -"sende bitte einen kurzen Bericht." - # type: SH #. type: SH -#: mount.davfs.8:217 +#: mount.davfs.8:214 #, no-wrap msgid "SECURITY POLICY" msgstr "SICHERHEITSREGELN" # type: Plain text #. type: Plain text -#: mount.davfs.8:222 +#: mount.davfs.8:219 msgid "" "B<@PROGRAM_NAME@> needs root privileges for mounting. But running a daemon, " "that is connected to the internet, with root privileges is a security risk. " @@ -706,7 +695,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:227 +#: mount.davfs.8:224 msgid "" "When invoked by root B<@PROGRAM_NAME@> will run as user B<@USER@> and group " "B<@GROUP@>. This may be changed in I<@SYS_CONF_DIR@/@CONFIGFILE@>." @@ -717,7 +706,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:231 +#: mount.davfs.8:228 msgid "" "When invoked by an ordinary user it will run with the id of this user and " "with group B<@GROUP@>." @@ -727,7 +716,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:237 +#: mount.davfs.8:234 msgid "" "As the file system may be mounted over an insecure internet connection, this " "increases the risk that malicious content may be included in the file " @@ -740,7 +729,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:242 +#: mount.davfs.8:239 msgid "" "Options B<nosuid> and B<nodev> will always be set; even root can not change " "this." @@ -750,7 +739,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:246 +#: mount.davfs.8:243 msgid "" "For ordinary users to be able to mount, they must be member of group " "B<@GROUP@> and there must be an entry in I<fstab>." @@ -761,7 +750,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:251 +#: mount.davfs.8:248 msgid "" "When the mount point given in I<fstab> is a relative file name and the file " "system is mounted by an unprivileged user, the mount point must lie within " @@ -773,7 +762,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:256 +#: mount.davfs.8:253 msgid "" "If in I<fstab> option B<uid> and/or B<gid> are given, an ordinary user can " "only mount, if her uid is the one given in option B<uid> and he belongs to " @@ -785,7 +774,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:264 +#: mount.davfs.8:261 msgid "" "B<WARNING:> If root allows an ordinary user to mount a file system (using " "I<fstab>) this includes the permission to read the associated B<credentials> " @@ -803,14 +792,14 @@ # type: SH #. type: SH -#: mount.davfs.8:265 +#: mount.davfs.8:262 #, no-wrap msgid "URLS AND MOUNT POINTS WITH SPACES" msgstr "URLS UND EINH??NGEPUNKTE MIT LEERZEICHEN" # type: Plain text #. type: Plain text -#: mount.davfs.8:270 +#: mount.davfs.8:267 msgid "" "Special characters like spaces in pathnames are a mess. They are interpreted " "differently by different programs and protocols, and there are different " @@ -822,7 +811,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:275 +#: mount.davfs.8:272 msgid "" "In I<fstab> spaces must be replaced by a three digit octal escape sequence. " "Write I<http://foo.bar/path\\(rs040with\\(rs040spaces> instead of I<http://" @@ -835,7 +824,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:279 +#: mount.davfs.8:276 msgid "" "For the I<@CONFIGFILE@> and the I<@SECRETSFILE@> files please see the escape " "and quotation rules described in the B<@CONFIGFILE@>(5) man page." @@ -845,20 +834,20 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:282 +#: mount.davfs.8:279 msgid "On I<command line> you must obey the escaping rules of the shell." msgstr "Auf der Kommandozeile m??ssen die Regeln der Shell beachtet werden." # type: SH #. type: SH -#: mount.davfs.8:284 +#: mount.davfs.8:281 #, no-wrap msgid "CACHING" msgstr "CACHE" # type: Plain text #. type: Plain text -#: mount.davfs.8:289 +#: mount.davfs.8:286 msgid "" "B<@PROGRAM_NAME@> tries to reduce HTTP-trafic by caching and reusing data. " "Information about directories and files are held in memory, while downloaded " @@ -869,7 +858,7 @@ "gehalten und heruntergeladene Dateien werden auf der Festplatte gespeichert." #. type: Plain text -#: mount.davfs.8:293 +#: mount.davfs.8:290 msgid "" "B<@PROGRAM_NAME@> needs to hold a local copy of all open files in the cache " "directory. Please make sure that enough local disk space is available." @@ -880,7 +869,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:301 +#: mount.davfs.8:298 msgid "" "B<@PROGRAM_NAME@> will consider cached information about directories and " "file attributes valid for a configurable time and look up this information " @@ -898,7 +887,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:307 +#: mount.davfs.8:304 msgid "" "This will not affect the content of files and directory listings. Whenever a " "file is opened, the server is looked up for a newer version of the file. " @@ -912,14 +901,14 @@ # type: SH #. type: SH -#: mount.davfs.8:309 +#: mount.davfs.8:306 #, no-wrap msgid "LOCKS, LOST UPDATE PROBLEM AND BACKUP FILES" msgstr "SPERREN, VERLORENGEGANGENE ??NDERUNGEN UND BACKUP-DATEIEN" # type: Plain text #. type: Plain text -#: mount.davfs.8:314 +#: mount.davfs.8:311 msgid "" "WebDAV introduced locks and B<@PROGRAM_NAME@> uses them by default. This " "will in most cases prevent two people from changing the same file in " @@ -931,7 +920,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:319 +#: mount.davfs.8:316 msgid "" "You might have disabled locks in I<@SYS_CONF_DIR@/@CONFIGFILE@> or I<~/." "@PACKAGE@/@CONFIGFILE@>." @@ -941,7 +930,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:322 +#: mount.davfs.8:319 msgid "The server might not support locks (they are not mandatory)." msgstr "" "M??glicherweise unterst??tzt der Server keine Sperren (sie sind in WevDAV " @@ -949,7 +938,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:326 +#: mount.davfs.8:323 msgid "" "A bad connection might prevent B<@PROGRAM_NAME@> from refreshing the lock in " "time." @@ -959,7 +948,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:330 +#: mount.davfs.8:327 msgid "" "Another WebDAV-client might use your lock (that is not too difficult and " "might even happen without intention)." @@ -969,7 +958,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:338 +#: mount.davfs.8:335 msgid "" "B<@PROGRAM_NAME@> will therefore check if the file has been changed on the " "the server before it uploads a new version. If it finds it impossible to " @@ -985,7 +974,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:346 +#: mount.davfs.8:343 msgid "" "Sometimes locks held by some client on the server will not be released. " "Maybe the client crashes or the network connection fails. When " @@ -1006,7 +995,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:353 +#: mount.davfs.8:350 msgid "" "WebDAV allows one to lock files that don't exist (to protect the name when a " "client intends to create a new file). This locks will be displayed as files " @@ -1025,14 +1014,14 @@ # type: SH #. type: SH -#: mount.davfs.8:355 +#: mount.davfs.8:352 #, no-wrap msgid "FILE OWNER AND PERMISSIONS" msgstr "EIGENT??MER UND DATEIRECHTE" # type: Plain text #. type: Plain text -#: mount.davfs.8:361 +#: mount.davfs.8:358 msgid "" "B<@PACKAGE@> implements Unix permissions for access control. But changing " "owner and permissions of a file is only B<local>. It is intended as a means " @@ -1046,7 +1035,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:366 +#: mount.davfs.8:363 msgid "" "The server does not know about this. From the servers point of view there is " "just one user (identified by the credentials) connected. Another WebDAV-" @@ -1059,7 +1048,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:372 +#: mount.davfs.8:369 msgid "" "There is one exception: The B<execute bit> on files is stored as a property " "on the sever. You may think of this property as an information about the " @@ -1074,7 +1063,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:378 +#: mount.davfs.8:375 msgid "" "When the file system is unmounted, attributes of cached files (including " "owner and permissions) are stored in cache, as well as the attributs of the " @@ -1088,34 +1077,34 @@ # type: SH #. type: SH -#: mount.davfs.8:380 umount.davfs.8:67 +#: mount.davfs.8:377 umount.davfs.8:67 #, no-wrap msgid "FILES" msgstr "DATEIEN" # type: TP #. type: TP -#: mount.davfs.8:382 +#: mount.davfs.8:379 #, no-wrap msgid "I<@SYS_CONF_DIR@/@CONFIGFILE@>" msgstr "I<@SYS_CONF_DIR@/@CONFIGFILE@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:385 +#: mount.davfs.8:382 msgid "System wide configuration file." msgstr "Systemweite Konfigurationsdatei." # type: TP #. type: TP -#: mount.davfs.8:386 +#: mount.davfs.8:383 #, no-wrap msgid "I<~/.@PACKAGE@/@CONFIGFILE@>" msgstr "I<~/.@PACKAGE@/@CONFIGFILE@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:391 +#: mount.davfs.8:388 msgid "" "Configuration file in the users home directory.The user configuration takes " "precedence over the system wide configuration. If it does not exist, " @@ -1127,14 +1116,14 @@ # type: TP #. type: TP -#: mount.davfs.8:392 +#: mount.davfs.8:389 #, no-wrap msgid "I<@SYS_CONF_DIR@/@SECRETSFILE@>" msgstr "I<@SYS_CONF_DIR@/@SECRETSFILE@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:397 +#: mount.davfs.8:394 msgid "" "Holds the credentials for WebDAV servers and the proxy, as well as " "decryption passwords for client certificates. The file must be read-writable " @@ -1146,14 +1135,14 @@ # type: TP #. type: TP -#: mount.davfs.8:398 +#: mount.davfs.8:395 #, no-wrap msgid "I<~/.@PACKAGE@/@SECRETSFILE@>" msgstr "I<~/.@PACKAGE@/@SECRETSFILE@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:408 +#: mount.davfs.8:405 msgid "" "Holds credentials for WebDAV servers and proxy, as well as decryption " "passwords for client certificates. The file must be read-writable by the " @@ -1174,14 +1163,14 @@ # type: TP #. type: TP -#: mount.davfs.8:409 +#: mount.davfs.8:406 #, no-wrap msgid "I<@SYS_CONF_DIR@/@CERTS_DIR@>" msgstr "I<@SYS_CONF_DIR@/@CERTS_DIR@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:416 +#: mount.davfs.8:413 msgid "" "You may store trusted server certificates here, that can not be verified by " "use of the system wide CA-Certificates. This is useful when your server uses " @@ -1198,20 +1187,20 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:418 mount.davfs.8:427 +#: mount.davfs.8:415 mount.davfs.8:424 msgid "Be sure to verify the certificate." msgstr "Vergiss nicht, das Zertifikat selbst zu pr??fen." # type: TP #. type: TP -#: mount.davfs.8:419 +#: mount.davfs.8:416 #, no-wrap msgid "I<~/.@PACKAGE@/@CERTS_DIR@>" msgstr "I<~/.@PACKAGE@/@CERTS_DIR@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:425 +#: mount.davfs.8:422 msgid "" "You may store trusted server certificates here, that can not be verified by " "use of the system wide CA-Certificates. This is useful when your server uses " @@ -1227,14 +1216,14 @@ # type: TP #. type: TP -#: mount.davfs.8:428 +#: mount.davfs.8:425 #, no-wrap msgid "I<@SYS_CONF_DIR@/@CERTS_DIR@/@CLICERTS_DIR@>" msgstr "I<@SYS_CONF_DIR@/@CERTS_DIR@/@CLICERTS_DIR@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:434 +#: mount.davfs.8:431 msgid "" "To store client certificates. Certificates must be in PKCS#12 format. You " "must configure the B<clientcert> option in I<@SYS_CONF_DIR@/@CONFIGFILE@> or " @@ -1248,14 +1237,14 @@ # type: TP #. type: TP -#: mount.davfs.8:435 +#: mount.davfs.8:432 #, no-wrap msgid "I<~/.@PACKAGE@/@CERTS_DIR@/@CLICERTS_DIR@>" msgstr "I<~/.@PACKAGE@/@CERTS_DIR@/@CLICERTS_DIR@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:440 +#: mount.davfs.8:437 msgid "" "To store client certificates. Certificates must be in PKCS#12 format. You " "must configure the B<clientcert> option in I<~/.@PACKAGE@/@CONFIGFILE@> to " @@ -1268,14 +1257,14 @@ # type: TP #. type: TP -#: mount.davfs.8:441 umount.davfs.8:69 +#: mount.davfs.8:438 umount.davfs.8:69 #, no-wrap msgid "I<@SYS_RUN@>" msgstr "I<@SYS_RUN@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:447 +#: mount.davfs.8:444 msgid "" "PID-files of running mount.davfs processes are stored there. This directory " "must belong to group B<@USER@> with write permissions for the group and the " @@ -1289,14 +1278,14 @@ # type: TP #. type: TP -#: mount.davfs.8:448 +#: mount.davfs.8:445 #, no-wrap msgid "I<@SYS_CACHE_DIR@>" msgstr "I<@SYS_CACHE_DIR@>" # type: Plain text #. type: Plain text -#: mount.davfs.8:455 +#: mount.davfs.8:452 msgid "" "System wide directory for cached files. Used when the file system is mounted " "by root. It must belong do group B<@USER@> and read, write and execute bits " @@ -1312,14 +1301,14 @@ # type: TP #. type: TP -#: mount.davfs.8:456 +#: mount.davfs.8:453 #, no-wrap msgid "I<~/.@PACKAGE@/cache>" msgstr "I<~/.@PACKAGE@/cache>" # type: Plain text #. type: Plain text -#: mount.davfs.8:460 +#: mount.davfs.8:457 msgid "" "Cache directory in the mounting users home directory. For every mounted " "WebDAV resource a subdirectory is created." @@ -1329,7 +1318,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:464 +#: mount.davfs.8:461 msgid "" "B<@PROGRAM_NAME@> will try to create missing directories, but it will B<not> " "touch I<@SYS_CONF_DIR@>." @@ -1339,21 +1328,21 @@ # type: SH #. type: SH -#: mount.davfs.8:465 +#: mount.davfs.8:462 #, no-wrap msgid "ENVIRONMENT" msgstr "UMGEBUNGSVARIABLEN" # type: TP #. type: TP -#: mount.davfs.8:467 +#: mount.davfs.8:464 #, no-wrap msgid "B<https_proxy http_proxy all_proxy>" msgstr "B<https_proxy http_proxy all_proxy>" # type: Plain text #. type: Plain text -#: mount.davfs.8:472 +#: mount.davfs.8:469 msgid "" "If no proxy is defined in the configuration file the value is taken from " "this environment variables. The proxy may be given with or without scheme " @@ -1365,26 +1354,26 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:474 +#: mount.davfs.8:471 msgid "http_proxy=[http://]foo.bar[:3218]" msgstr "http_proxy=[http://]foo.bar[:3218]" # type: Plain text #. type: Plain text -#: mount.davfs.8:476 mount.davfs.8:484 +#: mount.davfs.8:473 mount.davfs.8:481 msgid "Only used when the mounting user is root." msgstr "Wird nur benutzt, wenn der Benutzer root das Dateisystem einh??ngt." # type: TP #. type: TP -#: mount.davfs.8:477 +#: mount.davfs.8:474 #, no-wrap msgid "B<no_proxy>" msgstr "B<no_proxy>" # type: Plain text #. type: Plain text -#: mount.davfs.8:482 +#: mount.davfs.8:479 msgid "" "A comma separated list of domain names that shall be accessed directly. " "B<*> matches any domain name. A domain name starting with B<.> (period) " @@ -1396,27 +1385,27 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:486 +#: mount.davfs.8:483 msgid "Not applied when the proxy is defined in I<@SYS_CONF_DIR@>." msgstr "" "Wird nicht benutzt, wenn der Proxy in I<@SYS_CONF_DIR@> festgelegt wird." # type: SH #. type: SH -#: mount.davfs.8:488 +#: mount.davfs.8:485 #, no-wrap msgid "EXAMPLES" msgstr "BEISPIELE" # type: Plain text #. type: Plain text -#: mount.davfs.8:491 +#: mount.davfs.8:488 msgid "B<Non root user (e.g. filomena):>" msgstr "B<Normaler Benutzer (z.B filomena):>" # type: Plain text #. type: Plain text -#: mount.davfs.8:494 +#: mount.davfs.8:491 msgid "To allow an ordinary user to mount there must be an entry in I<fstab>" msgstr "" "Damit ein normaler Benutzer ein Dateisystem einh??ngen kann, ist ein Eintrag " @@ -1424,13 +1413,13 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:496 +#: mount.davfs.8:493 msgid "http://webdav.org/dav /media/dav davfs noauto,user 0 0" msgstr "http://webdav.org/dav /media/dav davfs noauto,user 0 0" # type: Plain text #. type: Plain text -#: mount.davfs.8:501 +#: mount.davfs.8:498 msgid "" "If a proxy must be used this should be configured in I<@SYS_CONF_DIR@/" "@CONFIGFILE@>" @@ -1440,13 +1429,13 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:503 +#: mount.davfs.8:500 msgid "proxy proxy.mycompany.com:8080" msgstr "proxy proxy.mycompany.com:8080" # type: Plain text #. type: Plain text -#: mount.davfs.8:507 +#: mount.davfs.8:504 msgid "Credentials are stored in I</home/filomena/.@PACKAGE@/@SECRETSFILE@>" msgstr "" "Die vertraulichen Zugangsdaten f??r den Server werden in I</home/filomena/." @@ -1454,49 +1443,49 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:509 +#: mount.davfs.8:506 msgid "proxy.mycompany.com filomena \"my secret\"" msgstr "proxy.mycompany.com filomena \"my secret\"" # type: Plain text #. type: Plain text -#: mount.davfs.8:511 +#: mount.davfs.8:508 msgid "/media/dav webdav-username password" msgstr "/media/dav webdav-username password" # type: Plain text #. type: Plain text -#: mount.davfs.8:515 +#: mount.davfs.8:512 msgid "Now the WebDAV resource may be mounted by user filomena invoking" msgstr "Jetzt kann Benutzerin filomena das Dateisystem einh??ngen durch " # type: Plain text #. type: Plain text -#: mount.davfs.8:517 +#: mount.davfs.8:514 msgid "B<mount /media/dav>" msgstr "B<mount /media/dav>" # type: Plain text #. type: Plain text -#: mount.davfs.8:521 +#: mount.davfs.8:518 msgid "and unmounted by user filomena invoking" msgstr "und dieselbe Benutzerin filomena kann es aush??ngen durch" # type: Plain text #. type: Plain text -#: mount.davfs.8:523 +#: mount.davfs.8:520 msgid "B<umount /media/dav>" msgstr "B<umount /media/dav>" # type: Plain text #. type: Plain text -#: mount.davfs.8:527 +#: mount.davfs.8:524 msgid "B<Root user only:>" msgstr "B<Nur Benutzer root:>" # type: Plain text #. type: Plain text -#: mount.davfs.8:533 +#: mount.davfs.8:530 msgid "" "Mounts the resource I<https://asciigirl.com/webdav> at mount point I</mount/" "site>, encrypting all traffic with SSL. Credentials for I<http://webdav.org/" @@ -1511,7 +1500,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:535 +#: mount.davfs.8:532 msgid "" "B<mount -t davfs -o uid=otto,gid=users,mode=775 https://asciigirl.com/" "webdav /mount/site>" @@ -1521,14 +1510,14 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:539 +#: mount.davfs.8:536 msgid "Mounts the resource I<http://linux.org.ar/repos> at I</dav>." msgstr "" "Die WebDAV-Resource I<http://linux.org.ar/repos> wird auf I</dav> eingeh??ngt." # type: Plain text #. type: Plain text -#: mount.davfs.8:541 +#: mount.davfs.8:538 msgid "" "B<mount.davfs -o uid=otto,gid=users,mode=775 http://linux.org.ar/repos/ /dav>" msgstr "" @@ -1536,20 +1525,20 @@ # type: SH #. type: SH -#: mount.davfs.8:544 umount.davfs.8:74 +#: mount.davfs.8:541 umount.davfs.8:74 #, no-wrap msgid "BUGS" msgstr "FEHLER" # type: Plain text #. type: Plain text -#: mount.davfs.8:547 +#: mount.davfs.8:544 msgid "B<@PACKAGE@> does not support links." msgstr "B<@PACKAGE@> unterst??tzt keine Links." # type: Plain text #. type: Plain text -#: mount.davfs.8:549 +#: mount.davfs.8:546 msgid "A B<@PACKAGE@> file system cannot be moved with I<mount --move>." msgstr "" "Ein B<@PACKAGE@>-Dateisystem kann nicht mit I<mount --move> verschoben " @@ -1557,7 +1546,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:555 +#: mount.davfs.8:552 msgid "" "This man page was written by Luciano Bello E<lt>luci...@linux.org.are<gt> " "for Debian, for version 0.2.3 of davfs2." @@ -1567,7 +1556,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:559 +#: mount.davfs.8:556 msgid "" "It has been updated for this version by Werner Baumann E<lt>werner." "baum...@onlinhome.dee<gt>." @@ -1577,13 +1566,13 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:562 +#: mount.davfs.8:559 msgid "@PACKAGE@ is developed by Sung Kim E<lt>hun...@gmail.come<gt>." msgstr "@PACKAGE@ wurde von Sung Kim E<lt>hun...@gmail.come<gt> entwickelt." # type: Plain text #. type: Plain text -#: mount.davfs.8:566 +#: mount.davfs.8:563 msgid "" "Version 1.0.0 (and later) of @PACKAGE@ is a complete rewrite by Werner " "Baumann." @@ -1593,7 +1582,7 @@ # type: Plain text #. type: Plain text -#: mount.davfs.8:579 +#: mount.davfs.8:576 msgid "" "B<u@PROGRAM_NAME@>(8), B<@CONFIGFILE@>(5), B<mount>(8), B<umount>(8), " "B<fstab>(5)" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/man/mount.davfs.8 new/davfs2-1.6.1/man/mount.davfs.8 --- old/davfs2-1.6.0/man/mount.davfs.8 2020-08-06 17:14:02.000000000 +0200 +++ new/davfs2-1.6.1/man/mount.davfs.8 2021-01-28 17:30:03.000000000 +0100 @@ -208,9 +208,6 @@ in the output of \fIps\fP. .br Default: no username. -.br -\fBExperimental:\fR This option is experimental and might be removed. If you -think it useful and successfully use it please send a short report. .RE Binary files old/davfs2-1.6.0/po/cs.gmo and new/davfs2-1.6.1/po/cs.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/po/cs.po new/davfs2-1.6.1/po/cs.po --- old/davfs2-1.6.0/po/cs.po 2020-08-06 18:17:33.000000000 +0200 +++ new/davfs2-1.6.1/po/cs.po 2021-10-31 16:57:51.000000000 +0100 @@ -7,7 +7,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://savannah.nongnu.org/support/?" "func=additem&group=davfs2\n" -"POT-Creation-Date: 2020-08-06 18:17+0200\n" +"POT-Creation-Date: 2021-10-31 16:57+0100\n" "PO-Revision-Date: 2007-05-03 19:50+0200\n" "Last-Translator: V??t??zslav Kotrla <vi...@post.cz>\n" "Language-Team: <c...@li.org>\n" @@ -82,7 +82,7 @@ #: src/cache.c:2748 src/mount_davfs.c:580 src/mount_davfs.c:582 #: src/mount_davfs.c:756 src/mount_davfs.c:758 src/mount_davfs.c:775 -#: src/mount_davfs.c:777 src/mount_davfs.c:1697 src/mount_davfs.c:1699 +#: src/mount_davfs.c:777 src/mount_davfs.c:1675 src/mount_davfs.c:1677 msgid "can't read user data base" msgstr "nemohu p??e????st ??daje o u??ivatel??ch" @@ -145,8 +145,8 @@ #: src/mount_davfs.c:413 src/mount_davfs.c:453 src/mount_davfs.c:462 #: src/mount_davfs.c:468 src/mount_davfs.c:494 src/mount_davfs.c:546 #: src/mount_davfs.c:574 src/mount_davfs.c:1063 src/mount_davfs.c:1068 -#: src/mount_davfs.c:1112 src/mount_davfs.c:1115 src/mount_davfs.c:1288 -#: src/mount_davfs.c:1325 src/webdav.c:446 src/webdav.c:449 +#: src/mount_davfs.c:1112 src/mount_davfs.c:1115 src/mount_davfs.c:1289 +#: src/mount_davfs.c:1326 src/webdav.c:446 src/webdav.c:449 msgid "can't change effective user id" msgstr "nemohu zm??nit identifik??tor efektivn??ho u??ivatele" @@ -241,8 +241,8 @@ msgid "can't read group data base" msgstr "nemohu p??e????st ??daje o skupin??ch" -#: src/mount_davfs.c:622 src/mount_davfs.c:670 src/mount_davfs.c:1378 -#: src/mount_davfs.c:1382 +#: src/mount_davfs.c:622 src/mount_davfs.c:670 src/mount_davfs.c:1379 +#: src/mount_davfs.c:1383 #, c-format msgid "can't open file %s" msgstr "nemohu otev????t soubor %s" @@ -455,82 +455,77 @@ "Varov??n??: nelze p??e????st ??daje o u??ivatel??ch. P??esto p??ipojuji, v mtab ale " "nebude ????dn?? z??znam." -#: src/mount_davfs.c:1293 +#: src/mount_davfs.c:1294 #, fuzzy, c-format msgid "can't create file %s" msgstr "nemohu vytvo??it soubor vyrovn??vac?? pam??ti %s" -#: src/mount_davfs.c:1297 +#: src/mount_davfs.c:1298 #, fuzzy, c-format msgid "can't lock file %s" msgstr "nemohu otev????t soubor %s" -#: src/mount_davfs.c:1319 +#: src/mount_davfs.c:1320 #, fuzzy, c-format msgid "" "Warning: can't write entry into %s, but will mount the file system anyway" msgstr "" "Varov??n??: nelze zapsat polo??ku do mtab, p??esto souborov?? syst??m p??ipoj??m" -#: src/mount_davfs.c:1357 +#: src/mount_davfs.c:1358 #, c-format msgid "option %s has invalid argument;it must be a decimal number" msgstr "volba %s m?? neplatn?? argument; mus?? to b??t ????slo v des??tkov?? soustav??" -#: src/mount_davfs.c:1360 +#: src/mount_davfs.c:1361 #, c-format msgid "option %s has invalid argument;it must be an octal number" msgstr "volba %s m?? neplatn?? argument; mus?? to b??t ????slo v osmi??kov?? soustav??" -#: src/mount_davfs.c:1363 +#: src/mount_davfs.c:1364 #, c-format msgid "option %s has invalid argument;it must be a number" msgstr "volba %s m?? neplatn?? argument; mus?? to b??t ????slo" -#: src/mount_davfs.c:1389 +#: src/mount_davfs.c:1390 #, fuzzy, c-format msgid "error writing to file %s" msgstr "chyba p??i z??pisu nov??ho indexov??ho souboru %s" -#: src/mount_davfs.c:1591 +#: src/mount_davfs.c:1580 #, c-format msgid "option %s requires argument" msgstr "volba %s vy??aduje argument" -#: src/mount_davfs.c:1679 -#, c-format -msgid "Unknown option %s.\n" -msgstr "Nezn??m?? volba %s.\n" - -#: src/mount_davfs.c:2111 src/mount_davfs.c:2348 src/mount_davfs.c:2360 +#: src/mount_davfs.c:2089 src/mount_davfs.c:2326 src/mount_davfs.c:2338 #, fuzzy, c-format msgid "opening %s failed" msgstr "odpojen?? selhalo" -#: src/mount_davfs.c:2132 src/mount_davfs.c:2173 src/mount_davfs.c:2277 -#: src/mount_davfs.c:2376 src/mount_davfs.c:2443 +#: src/mount_davfs.c:2110 src/mount_davfs.c:2151 src/mount_davfs.c:2255 +#: src/mount_davfs.c:2354 src/mount_davfs.c:2421 msgid "malformed line" msgstr "??patn?? zapsan?? ????dek" -#: src/mount_davfs.c:2210 +#: src/mount_davfs.c:2188 msgid "Option sharepoint_href_bug requires Neon version 0.31 or newer" msgstr "" -#: src/mount_davfs.c:2258 src/mount_davfs.c:2271 +#: src/mount_davfs.c:2236 src/mount_davfs.c:2249 msgid "unknown option" msgstr "nezn??m?? volba" -#: src/mount_davfs.c:2352 +#: src/mount_davfs.c:2330 #, c-format msgid "file %s has wrong owner" msgstr "soubor %s m?? chybn??ho vlastn??ka" -#: src/mount_davfs.c:2355 +#: src/mount_davfs.c:2333 #, c-format msgid "file %s has wrong permissions" msgstr "soubor %s m?? chybn?? opr??vn??n??" -#: src/mount_davfs.c:2578 +#: src/mount_davfs.c:2556 #, c-format msgid "" "Usage:\n" @@ -543,7 +538,7 @@ " %s -h,--help : vytiskne tuto zpr??vu\n" "\n" -#: src/mount_davfs.c:2582 +#: src/mount_davfs.c:2560 #, c-format msgid "" "To mount a WebDAV-resource don't call %s directly, but use\n" @@ -552,7 +547,7 @@ "Pro p??ipojen?? zdroje WebDAV nevolejte p????mo %s, ale\n" "pou??ijte m??sto toho `mount'.\n" -#: src/mount_davfs.c:2584 +#: src/mount_davfs.c:2562 #, c-format msgid "" " mount <mountpoint> : or\n" @@ -563,7 +558,7 @@ " mount <url_serveru> : p??ipoj?? zdroj WebDAV tak, jak je zad??no\n" " v /etc/fstab.\n" -#: src/mount_davfs.c:2587 +#: src/mount_davfs.c:2565 #, c-format msgid "" " mount -t davfs <server-url> <mountpoint> [-o options]\n" @@ -580,7 +575,7 @@ " ozna??uje seznam voleb odd??len??ch ????rkou.\n" "\n" -#: src/mount_davfs.c:2592 +#: src/mount_davfs.c:2570 #, c-format msgid "" "Recognised options:\n" @@ -599,7 +594,7 @@ " file_mode= : v??choz?? mode souboru (v osmi??kov?? soustav??)\n" " dir_mode= : v??choz?? mode adres????e (v osmi??kov?? soustav??)\n" -#: src/mount_davfs.c:2598 +#: src/mount_davfs.c:2576 #, fuzzy, c-format msgid "" " ro : mount read-only\n" @@ -842,6 +837,10 @@ msgid " accepted by user" msgstr " p??ijat u??ivatelem" +#, c-format +#~ msgid "Unknown option %s.\n" +#~ msgstr "Nezn??m?? volba %s.\n" + #~ msgid "trying fuse kernel file system" #~ msgstr "zkou????m jadern?? souborov?? syst??m fuse" Binary files old/davfs2-1.6.0/po/de.gmo and new/davfs2-1.6.1/po/de.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/po/de.po new/davfs2-1.6.1/po/de.po --- old/davfs2-1.6.0/po/de.po 2020-08-06 18:17:33.000000000 +0200 +++ new/davfs2-1.6.1/po/de.po 2021-10-31 16:57:51.000000000 +0100 @@ -8,7 +8,7 @@ "Project-Id-Version: davfs2 1.6.0\n" "Report-Msgid-Bugs-To: http://savannah.nongnu.org/support/?" "func=additem&group=davfs2\n" -"POT-Creation-Date: 2020-08-06 18:17+0200\n" +"POT-Creation-Date: 2021-10-31 16:57+0100\n" "PO-Revision-Date: 2020-08-03 17:13+0100\n" "Last-Translator: Werner Baumann <werner.baum...@onlinehome.de>\n" "Language-Team: \n" @@ -85,7 +85,7 @@ #: src/cache.c:2748 src/mount_davfs.c:580 src/mount_davfs.c:582 #: src/mount_davfs.c:756 src/mount_davfs.c:758 src/mount_davfs.c:775 -#: src/mount_davfs.c:777 src/mount_davfs.c:1697 src/mount_davfs.c:1699 +#: src/mount_davfs.c:777 src/mount_davfs.c:1675 src/mount_davfs.c:1677 msgid "can't read user data base" msgstr "kann die Benutzerdatenbank nicht lesen" @@ -149,8 +149,8 @@ #: src/mount_davfs.c:413 src/mount_davfs.c:453 src/mount_davfs.c:462 #: src/mount_davfs.c:468 src/mount_davfs.c:494 src/mount_davfs.c:546 #: src/mount_davfs.c:574 src/mount_davfs.c:1063 src/mount_davfs.c:1068 -#: src/mount_davfs.c:1112 src/mount_davfs.c:1115 src/mount_davfs.c:1288 -#: src/mount_davfs.c:1325 src/webdav.c:446 src/webdav.c:449 +#: src/mount_davfs.c:1112 src/mount_davfs.c:1115 src/mount_davfs.c:1289 +#: src/mount_davfs.c:1326 src/webdav.c:446 src/webdav.c:449 msgid "can't change effective user id" msgstr "kann die effektive Benutzer-ID nicht ??ndern" @@ -242,8 +242,8 @@ msgid "can't read group data base" msgstr "kann die Gruppendatenbank nicht lesen" -#: src/mount_davfs.c:622 src/mount_davfs.c:670 src/mount_davfs.c:1378 -#: src/mount_davfs.c:1382 +#: src/mount_davfs.c:622 src/mount_davfs.c:670 src/mount_davfs.c:1379 +#: src/mount_davfs.c:1383 #, c-format msgid "can't open file %s" msgstr "kann die Datei %s nicht ??ffnen" @@ -460,17 +460,17 @@ "Warnung: kann die Benutzerdatenbank nicht lesen. Ich h??nge das Dateisystem " "trotzdem ein, aber der Eintrag in der mtab wird fehlen." -#: src/mount_davfs.c:1293 +#: src/mount_davfs.c:1294 #, c-format msgid "can't create file %s" msgstr "kann die Datei %s nicht erzeugen" -#: src/mount_davfs.c:1297 +#: src/mount_davfs.c:1298 #, c-format msgid "can't lock file %s" msgstr "kann die Datei %s nicht sperren" -#: src/mount_davfs.c:1319 +#: src/mount_davfs.c:1320 #, c-format msgid "" "Warning: can't write entry into %s, but will mount the file system anyway" @@ -478,66 +478,61 @@ "Warnung: kann keinen Eintrag in die Datei %s schreiben, h??nge das " "Dateisystem trotzdem ein." -#: src/mount_davfs.c:1357 +#: src/mount_davfs.c:1358 #, c-format msgid "option %s has invalid argument;it must be a decimal number" msgstr "das Argument der Option %s ist ung??ltig; es muss eine Dezimalzahl sein" -#: src/mount_davfs.c:1360 +#: src/mount_davfs.c:1361 #, c-format msgid "option %s has invalid argument;it must be an octal number" msgstr "das Argument der Option %s ist ung??ltig; es muss eine Oktalzahl sein" -#: src/mount_davfs.c:1363 +#: src/mount_davfs.c:1364 #, c-format msgid "option %s has invalid argument;it must be a number" msgstr "das Argument der Option %s ist ung??ltig; es muss eine Zahl sein" -#: src/mount_davfs.c:1389 +#: src/mount_davfs.c:1390 #, c-format msgid "error writing to file %s" msgstr "Fehler beim Schreiben der Datei %s" -#: src/mount_davfs.c:1591 +#: src/mount_davfs.c:1580 #, c-format msgid "option %s requires argument" msgstr "die Option %s verlangt ein Argument" -#: src/mount_davfs.c:1679 -#, c-format -msgid "Unknown option %s.\n" -msgstr "unbekannte Option %s.\n" - -#: src/mount_davfs.c:2111 src/mount_davfs.c:2348 src/mount_davfs.c:2360 +#: src/mount_davfs.c:2089 src/mount_davfs.c:2326 src/mount_davfs.c:2338 #, c-format msgid "opening %s failed" msgstr "konnte %s nicht ??ffnen" -#: src/mount_davfs.c:2132 src/mount_davfs.c:2173 src/mount_davfs.c:2277 -#: src/mount_davfs.c:2376 src/mount_davfs.c:2443 +#: src/mount_davfs.c:2110 src/mount_davfs.c:2151 src/mount_davfs.c:2255 +#: src/mount_davfs.c:2354 src/mount_davfs.c:2421 msgid "malformed line" msgstr "Syntaxfehler in der Zeile" -#: src/mount_davfs.c:2210 +#: src/mount_davfs.c:2188 msgid "Option sharepoint_href_bug requires Neon version 0.31 or newer" msgstr "" "Die Option sharepoint_href_bug erfordert die Neon-Version 0.31 oder neuer" -#: src/mount_davfs.c:2258 src/mount_davfs.c:2271 +#: src/mount_davfs.c:2236 src/mount_davfs.c:2249 msgid "unknown option" msgstr "unbekannte Option" -#: src/mount_davfs.c:2352 +#: src/mount_davfs.c:2330 #, c-format msgid "file %s has wrong owner" msgstr "die Datei %s hat den falschen Besitzer" -#: src/mount_davfs.c:2355 +#: src/mount_davfs.c:2333 #, c-format msgid "file %s has wrong permissions" msgstr "die Dateirechte f??r %s sind falsch" -#: src/mount_davfs.c:2578 +#: src/mount_davfs.c:2556 #, c-format msgid "" "Usage:\n" @@ -550,7 +545,7 @@ " %s -h, --help : diese Hilfe anzeigen\n" "\n" -#: src/mount_davfs.c:2582 +#: src/mount_davfs.c:2560 #, c-format msgid "" "To mount a WebDAV-resource don't call %s directly, but use\n" @@ -559,7 +554,7 @@ "Um eine WebDAV-Resource zu einzuh??ngen, sollte %s nicht direkt\n" "aufgerufen werden; stattdessen sollte ???mount??? benutzt werden.\n" -#: src/mount_davfs.c:2584 +#: src/mount_davfs.c:2562 #, c-format msgid "" " mount <mountpoint> : or\n" @@ -570,7 +565,7 @@ " mount <server-url> : h??nge die WebDAV-Resource entsprechend den\n" " Angaben in /etc/fstab ein.\n" -#: src/mount_davfs.c:2587 +#: src/mount_davfs.c:2565 #, c-format msgid "" " mount -t davfs <server-url> <mountpoint> [-o options]\n" @@ -587,7 +582,7 @@ " Kommas unterteilte Liste von Optionen.\n" "\n" -#: src/mount_davfs.c:2592 +#: src/mount_davfs.c:2570 #, c-format msgid "" "Recognised options:\n" @@ -604,7 +599,7 @@ " file_mode= : Standard-Rechte f??r Dateien (oktal)\n" " dir_mode= : Standard-Rechte f??r Verzeichnisse (oktal)\n" -#: src/mount_davfs.c:2598 +#: src/mount_davfs.c:2576 #, c-format msgid "" " ro : mount read-only\n" @@ -848,3 +843,7 @@ #: src/webdav.c:2073 msgid " accepted by user" msgstr " durch den Benutzer akzeptiert" + +#, c-format +#~ msgid "Unknown option %s.\n" +#~ msgstr "unbekannte Option %s.\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/davfs2-1.6.0/src/mount_davfs.c new/davfs2-1.6.1/src/mount_davfs.c --- old/davfs2-1.6.0/src/mount_davfs.c 2020-08-03 11:13:20.000000000 +0200 +++ new/davfs2-1.6.1/src/mount_davfs.c 2021-04-08 11:28:37.000000000 +0200 @@ -1243,9 +1243,10 @@ if (args->use_utab) { if (asprintf(&utab_line, "SRC=%s TARGET=%s ROOT=/ " - "OPTS=uid=%i,gid=%i%s%s%s,helper=%s\n", + "OPTS=uid=%i,gid=%i%s%s%s%s,helper=%s\n", url, mpoint, args->uid, args->gid, (args->grpid) ? ",grpid" : "", + (args->netdev) ? ",_netdev" : "", (!privileged) ? ",user=" : "", (!privileged) ? uid_name : "", DAV_FS_TYPE) < 0) @@ -1508,7 +1509,7 @@ /* Parses the string option and stores the values in the appropriate fields of - args. If an unknown option is found exit(EXIT_FAILURE) is called. + args. All strings returned in args are newly allocated, and the calling function is responsible to free them. option : a comma separated list of options (like the options in fstab and @@ -1540,12 +1541,6 @@ NOEXEC, DEV, NODEV, - ASYNC, - AUTO, - NOAUTO, - COMMENT, - NOFAIL, - DEFAULTS, END }; char *suboptions[] = { @@ -1570,12 +1565,6 @@ [NOEXEC] = "noexec", [DEV] = "dev", [NODEV] = "nodev", - [ASYNC] = "async", - [AUTO] = "auto", - [NOAUTO] = "noauto", - [COMMENT] = "comment", - [NOFAIL] = "nofail", - [DEFAULTS] = "defaults", [END] = NULL }; @@ -1667,19 +1656,8 @@ case NODEV: args->mopts |= MS_NODEV; break; - case ASYNC: - case AUTO: - case NOAUTO: - case COMMENT: - case NOFAIL: - case DEFAULTS: - break; default: - if (so == -1) { - printf(_("Unknown option %s.\n"), argument); - usage(); - exit(EXIT_FAILURE); - } + break; } } }