/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: 2009-01-13 04:29:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090113042935-ztxe47n42q5z767b
* plugin-runner.c (main): Bug fix; do not accept a "d" character after
                          user ID or group ID numbers.  Bug fix: use
                          "%u" when printing PID of coredumped plugin,
                          not "%d".
* plugins.d/password-prompt.c (main): Remove comment which was copied
                                      from another program by mistake.
* plugins.d/splashy.c: Only comment changes.
* plugins.d/usplash.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
464
464
      break;
465
465
    case 130:                   /* --userid */
466
466
      /* In the GNU C library, uid_t is always unsigned int */
467
 
      ret = sscanf(arg, "%ud", &uid);
 
467
      ret = sscanf(arg, "%u", &uid);
468
468
      if(ret != 1){
469
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %ud\n",
470
 
                arg, uid);
 
469
        fprintf(stderr, "Bad user ID number: \"%s\", using %u\n", arg,
 
470
                uid);
471
471
      }
472
472
      break;
473
473
    case 131:                   /* --groupid */
474
474
      /* In the GNU C library, gid_t is always unsigned int */
475
 
      ret = sscanf(arg, "%ud", &gid);
 
475
      ret = sscanf(arg, "%u", &gid);
476
476
      if(ret != 1){
477
 
        fprintf(stderr, "Bad group ID number: \"%s\", using %ud\n",
 
477
        fprintf(stderr, "Bad group ID number: \"%s\", using %u\n",
478
478
                arg, gid);
479
479
      }
480
480
      break;
539
539
                       .args_doc = "",
540
540
                       .doc = "Mandos plugin runner -- Run plugins" };
541
541
  
542
 
  /* Parse using the parse_opt_config_file in order to get the custom
 
542
  /* Parse using parse_opt_config_file() in order to get the custom
543
543
     config file location, if any. */
544
544
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
545
545
  if (ret == ARGP_ERR_UNKNOWN){
968
968
                      (unsigned int) (proc->pid),
969
969
                      WTERMSIG(proc->status));
970
970
            } else if(WCOREDUMP(proc->status)){
971
 
              fprintf(stderr, "Plugin %d dumped core\n",
 
971
              fprintf(stderr, "Plugin %u dumped core\n",
972
972
                      (unsigned int) (proc->pid));
973
973
            }
974
974
          }