diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-05-06 21:49:09 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-05-06 21:49:09 +0000 |
commit | ea19730911e0ddab531e965f349de7568ff19f76 (patch) | |
tree | 267e8fade125fc734e96b92175ae01d784f6c392 /utils | |
parent | 35a8c6fc3835c5a55afcc2e5e37f431b86826199 (diff) | |
download | anaconda-ea19730911e0ddab531e965f349de7568ff19f76.tar.gz anaconda-ea19730911e0ddab531e965f349de7568ff19f76.tar.xz anaconda-ea19730911e0ddab531e965f349de7568ff19f76.zip |
larger buffer for filenames (#118549)
Diffstat (limited to 'utils')
-rw-r--r-- | utils/genhdlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/genhdlist.c b/utils/genhdlist.c index 144d9f988..94b37e940 100644 --- a/utils/genhdlist.c +++ b/utils/genhdlist.c @@ -465,7 +465,7 @@ int main(int argc, const char ** argv) { int nalloced = 0; int numpkgs = 0; int len = 0; - char b[80]; + char b[256]; if (!(f = fopen(depOrderFile, "r"))) { fprintf (stderr, "Unable to read %s\n", depOrderFile); |