diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-04-13 17:38:53 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-04-13 17:38:53 +0000 |
commit | 99757d94aab2a1188bbde7d00350bdc6b3d4075b (patch) | |
tree | 436f2b0ce52c4f5e940c402b4ba9a97e0a26b823 | |
parent | ed8535595ed7600d59fcd48632c791518b578556 (diff) | |
download | portage-99757d94aab2a1188bbde7d00350bdc6b3d4075b.tar.gz portage-99757d94aab2a1188bbde7d00350bdc6b3d4075b.tar.bz2 portage-99757d94aab2a1188bbde7d00350bdc6b3d4075b.zip |
don't declare input as integer, or etc-update will crash whenever the user enters some non-integer value; bug 55082
svn path=/main/trunk/; revision=3140
-rwxr-xr-x | bin/etc-update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/etc-update b/bin/etc-update index 07d0f6438..f39801894 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -397,7 +397,7 @@ else fi declare -i count=0 -declare -i input=0 +declare input=0 declare title="Gentoolkit's etc-update tool!" scan |