Deleted Added
full compact
mount_udf.c (101270) mount_udf.c (101829)
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Scott Long
5 *
6 * This code is derived from software contributed to Berkeley
7 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
8 * Support code is derived from software contributed to Berkeley

--- 22 unchanged lines hidden (view full) ---

31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Scott Long
5 *
6 * This code is derived from software contributed to Berkeley
7 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
8 * Support code is derived from software contributed to Berkeley

--- 22 unchanged lines hidden (view full) ---

31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * $FreeBSD: head/sbin/mount_udf/mount_udf.c 101270 2002-08-03 16:03:21Z mux $
39 * $FreeBSD: head/sbin/mount_udf/mount_udf.c 101829 2002-08-13 16:07:39Z mux $
40 */
41
42/*
43 * This is just a rip-off of mount_iso9660.c. It's been vastly simplified
44 * because UDF doesn't take any options at this time.
45 */
46
47#include <sys/cdio.h>
48#include <sys/file.h>
49#include <sys/param.h>
50#include <sys/mount.h>
40 */
41
42/*
43 * This is just a rip-off of mount_iso9660.c. It's been vastly simplified
44 * because UDF doesn't take any options at this time.
45 */
46
47#include <sys/cdio.h>
48#include <sys/file.h>
49#include <sys/param.h>
50#include <sys/mount.h>
51#include <sys/uio.h>
51
52#include <err.h>
53#include <errno.h>
54#include <stdlib.h>
55#include <stdio.h>
56#include <string.h>
57#include <sysexits.h>
58#include <unistd.h>

--- 77 unchanged lines hidden ---
52
53#include <err.h>
54#include <errno.h>
55#include <stdlib.h>
56#include <stdio.h>
57#include <string.h>
58#include <sysexits.h>
59#include <unistd.h>

--- 77 unchanged lines hidden ---