Browse Source

Fixed pusb_check return values

Andrea Luzzardi 18 years ago
parent
commit
853549f2c3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/pusb_check.c

+ 2
- 2
src/pusb_check.c View File

@ -119,11 +119,11 @@ int main(int argc, char **argv)
} }
pusb_conf_init(&opts); pusb_conf_init(&opts);
if (!pusb_conf_parse(conf_file, &opts, user, service)) if (!pusb_conf_parse(conf_file, &opts, user, service))
return (0);
return (1);
opts.quiet = quiet; opts.quiet = quiet;
pusb_log_init(&opts); pusb_log_init(&opts);
if (mode == 1) if (mode == 1)
return (pusb_check_perform_authentication(&opts, user, service));
return (!pusb_check_perform_authentication(&opts, user, service));
else if (mode == 2) else if (mode == 2)
pusb_check_conf_dump(&opts); pusb_check_conf_dump(&opts);
return (0); return (0);


Loading…
Cancel
Save