X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Ftests%2Fmcreate.c;h=f3fa3643c7b3e40e283948dcc706411d9cee8604;hp=13aacec7323f3b3f598fea10cbea9894f9eb1494;hb=f13b2a4cea69d8c4c079d03d58f55d32a54a9679;hpb=e3a7c58aebafce40323db54bf6056029e5af4a70 diff --git a/lustre/tests/mcreate.c b/lustre/tests/mcreate.c index 13aacec..f3fa364 100644 --- a/lustre/tests/mcreate.c +++ b/lustre/tests/mcreate.c @@ -15,11 +15,7 @@ * * You should have received a copy of the GNU General Public License * version 2 along with this program; If not, see - * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf - * - * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, - * CA 95054 USA or visit www.sun.com if you need additional information or - * have any questions. + * http://www.gnu.org/licenses/gpl-2.0.html * * GPL HEADER END */ @@ -58,14 +54,14 @@ void usage(const char *prog, int status) int main(int argc, char ** argv) { - struct option opts[] = { - { "device", 1, NULL, 'd' }, - { "help", 0, NULL, 'h' }, - { "mode", 1, NULL, 'm' }, - { "major", 1, NULL, 'M' }, - { "minor", 1, NULL, 'N' }, - { NULL }, - }; + struct option opts[] = { + { .name = "device", .has_arg = required_argument, .val = 'd' }, + { .name = "help", .has_arg = no_argument, .val = 'h' }, + { .name = "mode", .has_arg = required_argument, .val = 'm' }, + { .name = "major", .has_arg = required_argument, .val = 'M' }, + { .name = "minor", .has_arg = required_argument, .val = 'N' }, + { .name = NULL } + }; const char *path; mode_t mode = S_IFREG | 0644; dev_t dev = 0;