/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-31 20:01:03 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080831200103-wvjp5oagtxj7s25g
* plugin-runner.c: Break a couple of long lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
356
356
    { .name = NULL }
357
357
  };
358
358
  
359
 
  error_t parse_opt (int key, char *arg, __attribute__((unused)) struct argp_state *state) {
 
359
  error_t parse_opt (int key, char *arg, __attribute__((unused))
 
360
                     struct argp_state *state) {
360
361
    /* Get the INPUT argument from `argp_parse', which we know is a
361
362
       pointer to our plugin list pointer. */
362
363
    switch (key) {
507
508
    custom_argv[0] = argv[0];
508
509
    custom_argv[1] = NULL;
509
510
 
510
 
    /* for each line in the config file, strip whitespace and ignore commented text */
 
511
    /* for each line in the config file, strip whitespace and ignore
 
512
       commented text */
511
513
    while(true){
512
514
      sret = getline(&org_line, &size, conffp);
513
515
      if(sret == -1){