Deleted Added
full compact
mntopts.h (4065) mntopts.h (8487)
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

49#define MOPT_SYNC { "sync", 0, MNT_SYNCHRONOUS, 0 }
50#define MOPT_UNION { "union", 0, MNT_UNION, 0 }
51
52/* Skip this options without any action (needed for checkquota/quotaon) */
53#define MOPT_UQUOTA { "userquota", 0, 0, 0 }
54#define MOPT_GQUOTA { "groupquota", 0, 0, 0 }
55
56/* Control flags. */
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

49#define MOPT_SYNC { "sync", 0, MNT_SYNCHRONOUS, 0 }
50#define MOPT_UNION { "union", 0, MNT_UNION, 0 }
51
52/* Skip this options without any action (needed for checkquota/quotaon) */
53#define MOPT_UQUOTA { "userquota", 0, 0, 0 }
54#define MOPT_GQUOTA { "groupquota", 0, 0, 0 }
55
56/* Control flags. */
57#define MOPT_FORCE { "force", 1, MNT_FORCE, 0 }
57#define MOPT_FORCE { "force", 0, MNT_FORCE, 0 }
58#define MOPT_UPDATE { "update", 0, MNT_UPDATE, 0 }
59
60/* Support for old-style "ro", "rw" flags. */
61#define MOPT_RO { "ro", 0, MNT_RDONLY, 0 }
62#define MOPT_RW { "rw", 1, MNT_RDONLY, 0 }
63
64#define MOPT_FSTAB_COMPAT \
65 MOPT_RO, \

--- 13 unchanged lines hidden ---
58#define MOPT_UPDATE { "update", 0, MNT_UPDATE, 0 }
59
60/* Support for old-style "ro", "rw" flags. */
61#define MOPT_RO { "ro", 0, MNT_RDONLY, 0 }
62#define MOPT_RW { "rw", 1, MNT_RDONLY, 0 }
63
64#define MOPT_FSTAB_COMPAT \
65 MOPT_RO, \

--- 13 unchanged lines hidden ---