From: Tim Kientzle Date: Tue, 6 Jan 2009 05:26:48 +0000 (-0500) Subject: Merge r374 from trunk: Fix a typo X-Git-Tag: v2.6.1~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c057d44869862cce89e9e87002b64bcd156e3a86;p=thirdparty%2Flibarchive.git Merge r374 from trunk: Fix a typo Submitted by: Peter Hjalmarsson SVN-Revision: 375 --- diff --git a/tar/test/test_strip_components.c b/tar/test/test_strip_components.c index 2faf1994d..9bade16de 100644 --- a/tar/test/test_strip_components.c +++ b/tar/test/test_strip_components.c @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD: src/usr.bin/tar/test/test_strip_components.c,v 1.2 2008/11/1 static int touch(const char *fn) { - int fd = open(fn, O_RDWR | O_CREAT | 0644); + int fd = open(fn, O_RDWR | O_CREAT, 0644); failure("Couldn't create file '%s', fd=%d, errno=%d (%s)\n", fn, fd, errno, strerror(errno)); if (!assert(fd > 0))