summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2010-12-17 19:36:03 +0000
committermillert <millert@openbsd.org>2010-12-17 19:36:03 +0000
commit4340e61fb81829190daf3f1964717e918527fbea (patch)
treef2305c37d25c7af48e81476f0e10e6c66271a53b
parentopendev() path argument should be const. OK deraadt@ (diff)
downloadwireguard-openbsd-4340e61fb81829190daf3f1964717e918527fbea.tar.xz
wireguard-openbsd-4340e61fb81829190daf3f1964717e918527fbea.zip
Add missing util.h include for opendev()
-rw-r--r--sbin/fsck_msdos/check.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fsck_msdos/check.c b/sbin/fsck_msdos/check.c
index f9e149f264a..ee6a05b4596 100644
--- a/sbin/fsck_msdos/check.c
+++ b/sbin/fsck_msdos/check.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: check.c,v 1.13 2010/11/17 12:31:11 jsing Exp $ */
+/* $OpenBSD: check.c,v 1.14 2010/12/17 19:36:03 millert Exp $ */
/* $NetBSD: check.c,v 1.8 1997/10/17 11:19:29 ws Exp $ */
/*
@@ -40,6 +40,7 @@
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
+#include <util.h>
#include "ext.h"