Whamcloud - gitweb
LU-6210 tests: Change positional struct initializers to C99
[fs/lustre-release.git] / lustre / tests / mcreate.c
index 13aacec..f3fa364 100644 (file)
  *
  * 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;