2004-07-19 Bryce McKinlay <mckinlay@redhat.com>
* jartool.c (main): Ensure that only one of ftruncate and _chsize
is used.
From-SVN: r84931
+2004-07-19 Bryce McKinlay <mckinlay@redhat.com>
+
+ * jartool.c (main): Ensure that only one of ftruncate and _chsize
+ is used.
+
2004-07-11 Bryce McKinlay <mckinlay@redhat.com>
PR 16472
if (action == ACTION_UPDATE)
#if HAVE_FTRUNCATE
ftruncate (jarfd, lseek (jarfd, 0, SEEK_CUR));
-#endif
-#if HAVE__CHSIZE
+#else
_chsize (jarfd, lseek (jarfd, 0, SEEK_CUR));
#endif