Deleted Added
full compact
mount_udf.c (146853) mount_udf.c (147242)
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

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

27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
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

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

27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * $FreeBSD: head/sbin/mount_udf/mount_udf.c 146853 2005-06-01 09:39:36Z delphij $
35 * $FreeBSD: head/sbin/mount_udf/mount_udf.c 147242 2005-06-10 09:51:43Z delphij $
36 */
37
38/*
39 * This is just a rip-off of mount_iso9660.c. It's been vastly simplified
40 * because UDF doesn't take any options at this time.
41 */
42
43#include <sys/cdio.h>

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

59#include <sysexits.h>
60#include <unistd.h>
61
62#include "mntopts.h"
63
64struct mntopt mopts[] = {
65 MOPT_STDOPTS,
66 MOPT_UPDATE,
36 */
37
38/*
39 * This is just a rip-off of mount_iso9660.c. It's been vastly simplified
40 * because UDF doesn't take any options at this time.
41 */
42
43#include <sys/cdio.h>

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

59#include <sysexits.h>
60#include <unistd.h>
61
62#include "mntopts.h"
63
64struct mntopt mopts[] = {
65 MOPT_STDOPTS,
66 MOPT_UPDATE,
67 MOPT_NULL
67 MOPT_END
68};
69
70int set_charset(char **, char **, const char *);
71void usage(void);
72
73int
74main(int argc, char **argv)
75{

--- 109 unchanged lines hidden ---
68};
69
70int set_charset(char **, char **, const char *);
71void usage(void);
72
73int
74main(int argc, char **argv)
75{

--- 109 unchanged lines hidden ---