From: Bruno Haible Date: Sun, 30 Nov 2003 13:36:57 +0000 (+0000) Subject: Fix endless loop introduced in last patch. X-Git-Tag: v0.13~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66e3d66d697c658cc1a40f9dbb6b255e6a628fc0;p=thirdparty%2Fgettext.git Fix endless loop introduced in last patch. --- diff --git a/gettext-runtime/man/x-to-1.in b/gettext-runtime/man/x-to-1.in index 310629348..ba465ddc1 100644 --- a/gettext-runtime/man/x-to-1.in +++ b/gettext-runtime/man/x-to-1.in @@ -23,7 +23,7 @@ update= while true; do case "$1" in - --update) update=yes;; + --update) update=yes; shift;; *) break;; esac done diff --git a/gettext-tools/man/x-to-1.in b/gettext-tools/man/x-to-1.in index 310629348..ba465ddc1 100644 --- a/gettext-tools/man/x-to-1.in +++ b/gettext-tools/man/x-to-1.in @@ -23,7 +23,7 @@ update= while true; do case "$1" in - --update) update=yes;; + --update) update=yes; shift;; *) break;; esac done