]> arthur.barton.de Git - netatalk.git/commitdiff
Added a missing break in the CLI options parsing code. Thanks to
authorjmarcus <jmarcus>
Wed, 19 Sep 2001 03:08:40 +0000 (03:08 +0000)
committerjmarcus <jmarcus>
Wed, 19 Sep 2001 03:08:40 +0000 (03:08 +0000)
Edmund Lam <epl@unimelb.edu.au> for catching this.

etc/afpd/afp_options.c

index ff4d5435338705ad1b12b14b75a8f0316b265d1c..7e6689795a4f4bb346ea45311d8247aa16894b1e 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * $Id: afp_options.c,v 1.11 2001-09-12 19:13:16 uhees Exp $
+ * $Id: afp_options.c,v 1.12 2001-09-19 03:08:40 jmarcus Exp $
  *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
@@ -358,6 +358,7 @@ int afp_options_parse(int ac, char **av, struct afp_options *options)
            break;
        case 'I':
            options->flags |= OPTION_CUSTOMICON;
+               break;
        default :
            err++;
        }