+2008-06-01 Daniel Hahler <debian-bugs@thequod.de>
+
+ * src/archives.c (tarobject): Improve error message stating that
+ dpkg is unable to create a file so that it also refers to the real
+ filename instead of the non-diverted name only.
+
2008-05-31 Raphael Hertzog <hertzog@debian.org>
* src/query.c (searchfiles): Trim trailing slashes (and slash dot)
Colin Watson <cjwatson@debian.org>
Dafydd Harries <daf@muse.19inch.net>
Dan Gohman <gohmandj@mrs.umn.edu>
+Daniel Hahler <debian-bugs@thequod.de>
Daniel Jacobowitz <dan@debian.org>
Daniel Leidert <daniel.leidert@wgdd.de>
Daniel Nylander <yeager@lidkoping.net>
* Update dpkg(1) to refer to conffile whenever we speak of configuration
file handled by dpkg. Thus harmonize vocabulary with the policy. Thanks
to Helge Kreutzmann <debian@helgefjell.de>. Closes: #381219
+ * Improve error message stating that dpkg is unable to create a file so that
+ it also refers to the real filename instead of the non-diverted name only.
+ Thanks to Daniel Hahler for the patch. Closes: #457135
[ Pierre Habouzit ]
* Add a --query option to update-alternatives. Closes: #336091, #441904
* it until we apply the proper mode, which might be a statoverride.
*/
fd= open(fnamenewvb.buf, (O_CREAT|O_EXCL|O_WRONLY), 0);
- if (fd < 0) ohshite(_("unable to create `%.255s'"),ti->Name);
+ if (fd < 0)
+ ohshite(_("unable to create `%.255s' (while processing `%.255s')"), fnamenewvb.buf, ti->Name);
push_cleanup(cu_closefd, ehflag_bombout, NULL, 0, 1, &fd);
debug(dbg_eachfiledetail,"tarobject NormalFile[01] open size=%lu",
(unsigned long)ti->Size);