diff -u -r sharutils-4.3.79/ChangeLog sharutils-4.3.80/ChangeLog --- sharutils-4.3.79/ChangeLog 2005-04-25 20:06:44.000000000 -0700 +++ sharutils-4.3.80/ChangeLog 2005-04-30 08:00:45.000000000 -0700 @@ -1,3 +1,8 @@ +2005-04-29 Bruce Korb + + * src/unshar.c(main): unlink the temporary file created when + unsharing from stdin + 2005-04-24 Bruce Korb * Makefile.am(DISTCLEANFILES): stamp-h is cleanable. diff -u -r sharutils-4.3.79/NEWS sharutils-4.3.80/NEWS --- sharutils-4.3.79/NEWS 2005-04-25 19:54:06.000000000 -0700 +++ sharutils-4.3.80/NEWS 2005-04-30 07:59:58.000000000 -0700 @@ -1,7 +1,11 @@ GNU sharutils NEWS - User visible changes. Copyright (C) 1994, 1995, 1996, 2002, 2004, 2005 Free Software Foundation, Inc. -Version 4.3.79 - April 2005, by Bruce Korb +Version 4.3.80 - April 2005, by Bruce Korb + +* Buglet: Unlink the temporary file when unsharing from stdin. + +-- Version 4.3.79 - April 2005, by Bruce Korb * rewrote the temporary file handling in unshar to avoid both a theoretical timing hole (hitting it requires cooperation) and a buffer overrun diff -u -r sharutils-4.3.79/configure sharutils-4.3.80/configure --- sharutils-4.3.79/configure 2005-04-25 20:07:45.000000000 -0700 +++ sharutils-4.3.80/configure 2005-04-30 08:02:06.000000000 -0700 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for sharutils 4.3.79. +# Generated by GNU Autoconf 2.59 for sharutils 4.3.80. # # Report bugs to . # @@ -269,8 +269,8 @@ # Identity of this package. PACKAGE_NAME='sharutils' PACKAGE_TARNAME='sharutils' -PACKAGE_VERSION='4.3.79' -PACKAGE_STRING='sharutils 4.3.79' +PACKAGE_VERSION='4.3.80' +PACKAGE_STRING='sharutils 4.3.80' PACKAGE_BUGREPORT='bug-gnu-utils@gnu.org' ac_unique_file="src/shar.c" @@ -780,7 +780,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures sharutils 4.3.79 to adapt to many kinds of systems. +\`configure' configures sharutils 4.3.80 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -846,7 +846,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of sharutils 4.3.79:";; + short | recursive ) echo "Configuration of sharutils 4.3.80:";; esac cat <<\_ACEOF @@ -981,7 +981,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -sharutils configure 4.3.79 +sharutils configure 4.3.80 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -995,7 +995,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by sharutils $as_me 4.3.79, which was +It was created by sharutils $as_me 4.3.80, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1642,7 +1642,7 @@ # Define the identity of the package. PACKAGE='sharutils' - VERSION='4.3.79' + VERSION='4.3.80' cat >>confdefs.h <<_ACEOF @@ -15488,7 +15488,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by sharutils $as_me 4.3.79, which was +This file was extended by sharutils $as_me 4.3.80, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15551,7 +15551,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -sharutils config.status 4.3.79 +sharutils config.status 4.3.80 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff -u -r sharutils-4.3.79/configure.ac sharutils-4.3.80/configure.ac --- sharutils-4.3.79/configure.ac 2005-04-25 20:07:23.000000000 -0700 +++ sharutils-4.3.80/configure.ac 2005-04-30 08:01:42.000000000 -0700 @@ -6,7 +6,7 @@ # FIXME: AC_CHECK_FUNCS([gethostname getwd]) AC_PREREQ(2.59) -AC_INIT([sharutils],[4.3.79],[bug-gnu-utils@gnu.org]) +AC_INIT([sharutils],[4.3.80],[bug-gnu-utils@gnu.org]) AC_CONFIG_SRCDIR([src/shar.c]) AC_CONFIG_HEADERS([config.h]) diff -u -r sharutils-4.3.79/doc/sharutils.info sharutils-4.3.80/doc/sharutils.info --- sharutils-4.3.79/doc/sharutils.info 2005-04-25 20:08:31.000000000 -0700 +++ sharutils-4.3.80/doc/sharutils.info 2005-04-30 08:02:52.000000000 -0700 @@ -15,7 +15,7 @@ * uuencode: (sharutils)uuencode invocation. Force binary file to 7-bits. END-INFO-DIR-ENTRY - This manual documents version 4.3.79 of the GNU shar utilities. + This manual documents version 4.3.80 of the GNU shar utilities. Copyright (C) 1994-2004 Free Software Foundation, Inc. @@ -32,7 +32,7 @@ GNU `shar' utilities ******************** -This manual documents version 4.3.79 of the GNU shar utilities. +This manual documents version 4.3.80 of the GNU shar utilities. Copyright (C) 1994-2004 Free Software Foundation, Inc. @@ -47,7 +47,7 @@ preparing them for transmission by electronic mail services, while `unshar' helps unpacking shell archives after reception. Other tools help using `shar' with the electronic mail system, and even allow -synchronization of remote directory trees. This is release 4.3.79. +synchronization of remote directory trees. This is release 4.3.80. * Menu: diff -u -r sharutils-4.3.79/doc/stamp-vti sharutils-4.3.80/doc/stamp-vti --- sharutils-4.3.79/doc/stamp-vti 2005-04-25 20:08:31.000000000 -0700 +++ sharutils-4.3.80/doc/stamp-vti 2005-04-30 08:02:52.000000000 -0700 @@ -1,4 +1,4 @@ @set UPDATED 23 January 2005 @set UPDATED-MONTH January 2005 -@set EDITION 4.3.79 -@set VERSION 4.3.79 +@set EDITION 4.3.80 +@set VERSION 4.3.80 diff -u -r sharutils-4.3.79/doc/version.texi sharutils-4.3.80/doc/version.texi --- sharutils-4.3.79/doc/version.texi 2005-04-25 20:08:31.000000000 -0700 +++ sharutils-4.3.80/doc/version.texi 2005-04-30 08:02:52.000000000 -0700 @@ -1,4 +1,4 @@ @set UPDATED 23 January 2005 @set UPDATED-MONTH January 2005 -@set EDITION 4.3.79 -@set VERSION 4.3.79 +@set EDITION 4.3.80 +@set VERSION 4.3.80 Files sharutils-4.3.79/po/ca.gmo and sharutils-4.3.80/po/ca.gmo differ diff -u -r sharutils-4.3.79/po/ca.po sharutils-4.3.80/po/ca.po --- sharutils-4.3.79/po/ca.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/ca.po 2005-04-30 08:02:59.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.73\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-08-24 13:23+0200\n" "Last-Translator: Antoni Bella Perez \n" "Language-Team: Catalan \n" @@ -673,7 +673,7 @@ msgid "Cannot chdir to `%s'" msgstr "No es pot canviar al directori `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -681,7 +681,7 @@ msgid "standard input" msgstr "entrada estàndard" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/cs.gmo and sharutils-4.3.80/po/cs.gmo differ diff -u -r sharutils-4.3.79/po/cs.po sharutils-4.3.80/po/cs.po --- sharutils-4.3.79/po/cs.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/cs.po 2005-04-30 08:02:59.000000000 -0700 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: sharutils 4.2c\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 1999-01-05 15:48+01:00\n" "Last-Translator: Vladimir Michl \n" "Language-Team: Czech \n" @@ -656,7 +656,7 @@ msgid "Cannot chdir to `%s'" msgstr "Adres nelze zmnit na `%s`" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -664,7 +664,7 @@ msgid "standard input" msgstr "standardn vstup" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/da.gmo and sharutils-4.3.80/po/da.gmo differ diff -u -r sharutils-4.3.79/po/da.po sharutils-4.3.80/po/da.po --- sharutils-4.3.79/po/da.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/da.po 2005-04-30 08:02:59.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.73\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-09-06 17:33:05+0200\n" "Last-Translator: Keld Simonsen \n" "Language-Team: Danish \n" @@ -658,7 +658,7 @@ msgid "Cannot chdir to `%s'" msgstr "Kan ikke g til katalog \"%s\"" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -666,7 +666,7 @@ msgid "standard input" msgstr "standard ind" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/de.gmo and sharutils-4.3.80/po/de.gmo differ diff -u -r sharutils-4.3.79/po/de.po sharutils-4.3.80/po/de.po --- sharutils-4.3.79/po/de.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/de.po 2005-04-30 08:02:59.000000000 -0700 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.75\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-12-15 14:38+0100\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -676,7 +676,7 @@ msgid "Cannot chdir to `%s'" msgstr "chdir auf Verzeichnis `%s' nicht mglich" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -684,7 +684,7 @@ msgid "standard input" msgstr "Standard-Eingabe" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/el.gmo and sharutils-4.3.80/po/el.gmo differ diff -u -r sharutils-4.3.79/po/el.po sharutils-4.3.80/po/el.po --- sharutils-4.3.79/po/el.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/el.po 2005-04-30 08:02:59.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU sharutils 4.2\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 1998-06-20 18:03+0200\n" "Last-Translator: Simos KSenitellis \n" "Language-Team: Greek \n" @@ -756,7 +756,7 @@ msgid "Cannot chdir to `%s'" msgstr " `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -765,7 +765,7 @@ msgid "standard input" msgstr " " -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/es.gmo and sharutils-4.3.80/po/es.gmo differ diff -u -r sharutils-4.3.79/po/es.po sharutils-4.3.80/po/es.po --- sharutils-4.3.79/po/es.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/es.po 2005-04-30 08:02:59.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU sharutils 4.2c\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 1996-12-23 20:45+0100\n" "Last-Translator: Toms Bautista \n" "Language-Team: Spanish \n" @@ -984,7 +984,7 @@ msgid "Cannot chdir to `%s'" msgstr "No se puede cambiar al directorio `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -992,7 +992,7 @@ msgid "standard input" msgstr "entrada estndar" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/et.gmo and sharutils-4.3.80/po/et.gmo differ diff -u -r sharutils-4.3.79/po/et.po sharutils-4.3.80/po/et.po --- sharutils-4.3.79/po/et.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/et.po 2005-04-30 08:03:00.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.75\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-12-03 13:56+0200\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -645,7 +645,7 @@ msgid "Cannot chdir to `%s'" msgstr "Kataloogi `%s' ei nnestu siseneda" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -653,7 +653,7 @@ msgid "standard input" msgstr "standardsisend" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/fi.gmo and sharutils-4.3.80/po/fi.gmo differ diff -u -r sharutils-4.3.79/po/fi.po sharutils-4.3.80/po/fi.po --- sharutils-4.3.79/po/fi.po 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/fi.po 2005-04-30 08:03:00.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-01-24 19:55+0200\n" "Last-Translator: Lauri Nurmi \n" "Language-Team: Finnish \n" @@ -675,7 +675,7 @@ msgid "Cannot chdir to `%s'" msgstr "Hakemistoon \"%s\" siirtyminen epäonnistui" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -683,7 +683,7 @@ msgid "standard input" msgstr "vakiosyöte" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/fr.gmo and sharutils-4.3.80/po/fr.gmo differ diff -u -r sharutils-4.3.79/po/fr.po sharutils-4.3.80/po/fr.po --- sharutils-4.3.79/po/fr.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/fr.po 2005-04-30 08:03:00.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU sharutils 4.3.75\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-12-03 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -675,7 +675,7 @@ msgid "Cannot chdir to `%s'" msgstr "Ne peut changer le rpertoire %s " -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -683,7 +683,7 @@ msgid "standard input" msgstr "entre standard" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/gl.gmo and sharutils-4.3.80/po/gl.gmo differ diff -u -r sharutils-4.3.79/po/gl.po sharutils-4.3.80/po/gl.po --- sharutils-4.3.79/po/gl.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/gl.po 2005-04-30 08:03:00.000000000 -0700 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: sharutils 4.2c\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2000-05-30 09:45+0200\n" "Last-Translator: Jess Bravo lvarez \n" "Language-Team: Galician \n" @@ -660,7 +660,7 @@ msgid "Cannot chdir to `%s'" msgstr "Non se pode cambiar directorio `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -668,7 +668,7 @@ msgid "standard input" msgstr "entrada estndar" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/hu.gmo and sharutils-4.3.80/po/hu.gmo differ diff -u -r sharutils-4.3.79/po/hu.po sharutils-4.3.80/po/hu.po --- sharutils-4.3.79/po/hu.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/hu.po 2005-04-30 08:03:00.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils-4.3.70\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-08-05 11:43GMT\n" "Last-Translator: Gbor Istvn \n" "Language-Team: Hungarian \n" @@ -673,7 +673,7 @@ msgid "Cannot chdir to `%s'" msgstr "Nem lehet belpni a '%s' knyvtrba" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -681,7 +681,7 @@ msgid "standard input" msgstr "szabvnyos bemenet" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/it.gmo and sharutils-4.3.80/po/it.gmo differ diff -u -r sharutils-4.3.79/po/it.po sharutils-4.3.80/po/it.po --- sharutils-4.3.79/po/it.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/it.po 2005-04-30 08:03:00.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-03-05 10:56+0000\n" "Last-Translator: Marco Colombo \n" "Language-Team: Italian \n" @@ -670,7 +670,7 @@ msgid "Cannot chdir to `%s'" msgstr "Impossibile spostarsi in '%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -678,7 +678,7 @@ msgid "standard input" msgstr "standard input" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/ja.gmo and sharutils-4.3.80/po/ja.gmo differ diff -u -r sharutils-4.3.79/po/ja.po sharutils-4.3.80/po/ja.po --- sharutils-4.3.79/po/ja.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/ja.po 2005-04-30 08:03:00.000000000 -0700 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: GNU sharutils 4.3.73\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-08-03 23:59+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -660,7 +660,7 @@ msgid "Cannot chdir to `%s'" msgstr "`%s'chdirǤޤ" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -668,7 +668,7 @@ msgid "standard input" msgstr "ɸ" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/nb.gmo and sharutils-4.3.80/po/nb.gmo differ diff -u -r sharutils-4.3.79/po/nb.po sharutils-4.3.80/po/nb.po --- sharutils-4.3.79/po/nb.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/nb.po 2005-04-30 08:03:00.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU gettext 0.10.12\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-06-25 20:04+0200\n" "Last-Translator: Karl Anders ygard \n" "Language-Team: Norwegian-bokml \n" @@ -577,7 +577,7 @@ msgid "Cannot chdir to `%s'" msgstr "kan ikke skifte til filkatalog \"%s\"" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -585,7 +585,7 @@ msgid "standard input" msgstr "standard inn" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/nl.gmo and sharutils-4.3.80/po/nl.gmo differ diff -u -r sharutils-4.3.79/po/nl.po sharutils-4.3.80/po/nl.po --- sharutils-4.3.79/po/nl.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/nl.po 2005-04-30 08:03:00.000000000 -0700 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-01-31 17:43+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -662,7 +662,7 @@ msgid "Cannot chdir to `%s'" msgstr "Huidige map op `%s' zetten is mislukt" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -670,7 +670,7 @@ msgid "standard input" msgstr "standaardinvoer" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/nn.gmo and sharutils-4.3.80/po/nn.gmo differ diff -u -r sharutils-4.3.79/po/nn.po sharutils-4.3.80/po/nn.po --- sharutils-4.3.79/po/nn.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/nn.po 2005-04-30 08:03:00.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU gettext 0.10.12\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-06-25 20:04+0200\n" "Last-Translator: Karl Anders ygard \n" "Language-Team: Norwegian-nynorsk \n" @@ -576,7 +576,7 @@ msgid "Cannot chdir to `%s'" msgstr "kan ikkje skifte til filkatalog \"%s\"" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -584,7 +584,7 @@ msgid "standard input" msgstr "" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/pt.gmo and sharutils-4.3.80/po/pt.gmo differ diff -u -r sharutils-4.3.79/po/pt.po sharutils-4.3.80/po/pt.po --- sharutils-4.3.79/po/pt.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/pt.po 2005-04-30 08:03:00.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GNU sharutils\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-06-24 20:30+0200\n" "Last-Translator: unknown\n" "Language-Team: Portugese \n" @@ -604,7 +604,7 @@ msgid "Cannot chdir to `%s'" msgstr "No possvel mudar para a directoria `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -612,7 +612,7 @@ msgid "standard input" msgstr "entrada standard" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/ru.gmo and sharutils-4.3.80/po/ru.gmo differ diff -u -r sharutils-4.3.79/po/ru.po sharutils-4.3.80/po/ru.po --- sharutils-4.3.79/po/ru.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/ru.po 2005-04-30 08:03:00.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: sharutils 4.2c\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 1998-11-29 02:01+07:00\n" "Last-Translator: Const Kaplinsky \n" "Language-Team: Russian \n" @@ -649,7 +649,7 @@ msgid "Cannot chdir to `%s'" msgstr " `%s' " -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -657,7 +657,7 @@ msgid "standard input" msgstr " " -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/rw.gmo and sharutils-4.3.80/po/rw.gmo differ diff -u -r sharutils-4.3.79/po/rw.po sharutils-4.3.80/po/rw.po --- sharutils-4.3.79/po/rw.po 2005-04-25 20:08:37.000000000 -0700 +++ sharutils-4.3.80/po/rw.po 2005-04-30 08:03:00.000000000 -0700 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -699,7 +699,7 @@ msgid "Cannot chdir to `%s'" msgstr "Kuri" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -708,7 +708,7 @@ msgid "standard input" msgstr "Bisanzwe Iyinjiza" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" diff -u -r sharutils-4.3.79/po/sharutils.pot sharutils-4.3.80/po/sharutils.pot --- sharutils-4.3.79/po/sharutils.pot 2005-04-25 20:08:36.000000000 -0700 +++ sharutils-4.3.80/po/sharutils.pot 2005-04-30 08:02:52.000000000 -0700 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -575,7 +575,7 @@ msgid "Cannot chdir to `%s'" msgstr "" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -583,7 +583,7 @@ msgid "standard input" msgstr "" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/sr.gmo and sharutils-4.3.80/po/sr.gmo differ diff -u -r sharutils-4.3.79/po/sr.po sharutils-4.3.80/po/sr.po --- sharutils-4.3.79/po/sr.po 2005-04-25 20:08:38.000000000 -0700 +++ sharutils-4.3.80/po/sr.po 2005-04-30 08:03:00.000000000 -0700 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-01-25 08:20-0500\n" "Last-Translator: Aleksandar Jelenak \n" "Language-Team: Serbian \n" @@ -656,7 +656,7 @@ msgid "Cannot chdir to `%s'" msgstr "Није могуће пребацити се у `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -664,7 +664,7 @@ msgid "standard input" msgstr "стандардни улаз" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/sv.gmo and sharutils-4.3.80/po/sv.gmo differ diff -u -r sharutils-4.3.79/po/sv.po sharutils-4.3.80/po/sv.po --- sharutils-4.3.79/po/sv.po 2005-04-25 20:08:38.000000000 -0700 +++ sharutils-4.3.80/po/sv.po 2005-04-30 08:03:01.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.75\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-12-07 00:11+0100\n" "Last-Translator: Jan Djrv \n" "Language-Team: Swedish \n" @@ -655,7 +655,7 @@ msgid "Cannot chdir to `%s'" msgstr "Kan inte g till katalog \"%s\"" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -663,7 +663,7 @@ msgid "standard input" msgstr "standard in" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/tr.gmo and sharutils-4.3.80/po/tr.gmo differ diff -u -r sharutils-4.3.79/po/tr.po sharutils-4.3.80/po/tr.po --- sharutils-4.3.79/po/tr.po 2005-04-25 20:08:38.000000000 -0700 +++ sharutils-4.3.80/po/tr.po 2005-04-30 08:03:01.000000000 -0700 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: sharutils-4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-01-25 20:23+0200\n" "Last-Translator: Eyp Hakan Duran \n" "Language-Team: Turkish \n" @@ -655,7 +655,7 @@ msgid "Cannot chdir to `%s'" msgstr "`%s' e girilemiyor" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -663,7 +663,7 @@ msgid "standard input" msgstr "standart girdi" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/vi.gmo and sharutils-4.3.80/po/vi.gmo differ diff -u -r sharutils-4.3.79/po/vi.po sharutils-4.3.80/po/vi.po --- sharutils-4.3.79/po/vi.po 2005-04-25 20:08:38.000000000 -0700 +++ sharutils-4.3.80/po/vi.po 2005-04-30 08:03:01.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.78\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2005-02-02 23:11+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -666,7 +666,7 @@ msgid "Cannot chdir to `%s'" msgstr "Không thể chdir (đổi thư mục) vào `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -674,7 +674,7 @@ msgid "standard input" msgstr "dữ liệu nhập chuẩn" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" Files sharutils-4.3.79/po/zh_TW.gmo and sharutils-4.3.80/po/zh_TW.gmo differ diff -u -r sharutils-4.3.79/po/zh_TW.po sharutils-4.3.80/po/zh_TW.po --- sharutils-4.3.79/po/zh_TW.po 2005-04-25 20:08:38.000000000 -0700 +++ sharutils-4.3.80/po/zh_TW.po 2005-04-30 08:03:01.000000000 -0700 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: sharutils 4.3.73\n" "Report-Msgid-Bugs-To: bug-gnu-utils@gnu.org\n" -"POT-Creation-Date: 2005-04-25 20:08-0700\n" +"POT-Creation-Date: 2005-04-30 08:02-0700\n" "PO-Revision-Date: 2002-08-03 20:13 +8\n" "Last-Translator: Yuan-Chen Cheng \n" "Language-Team: Chinese (traditional) \n" @@ -644,7 +644,7 @@ msgid "Cannot chdir to `%s'" msgstr "LkJؿ `%s'" -#: src/unshar.c:442 src/unshar.c:504 +#: src/unshar.c:442 src/unshar.c:505 msgid "allocate file name buffer" msgstr "" @@ -652,7 +652,7 @@ msgid "standard input" msgstr "зǿJ" -#: src/unshar.c:525 +#: src/unshar.c:526 msgid "allocate file buffer" msgstr "" diff -u -r sharutils-4.3.79/src/unshar.c sharutils-4.3.80/src/unshar.c --- sharutils-4.3.79/src/unshar.c 2005-04-25 19:53:13.000000000 -0700 +++ sharutils-4.3.80/src/unshar.c 2005-04-30 07:48:47.000000000 -0700 @@ -464,6 +464,7 @@ unarchive_shar_file (_("standard input"), file); fclose (file); + unlink (name_buffer); } exit (EXIT_SUCCESS);