--- getopt.c 2005-03-02 08:38:13.000000000 +0100 +++ getopt.c.new 2005-10-15 11:01:18.000000000 +0200 @@ -32,4 +32,5 @@ int i; +next_option: do { if ((token = strsep(options, ",")) == NULL) @@ -61,4 +62,4 @@ } printk("%s: Unrecognized mount option %s\n", caller, token); - return -1; + goto next_option; }