From c057d44869862cce89e9e87002b64bcd156e3a86 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Tue, 6 Jan 2009 00:26:48 -0500 Subject: [PATCH] Merge r374 from trunk: Fix a typo Submitted by: Peter Hjalmarsson SVN-Revision: 375 --- tar/test/test_strip_components.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.47.3