Repair breakage to last-minute API change.

I changed ulog_log{in,out} to return a void, but forgot to change
ulog-helper as well.

Reported by:	stefanf
This commit is contained in:
Ed Schouten 2009-12-03 21:44:41 +00:00
parent eb27d7fb1c
commit 9e9a895ea7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200085

View file

@ -68,12 +68,10 @@ main(int argc, char *argv[])
if (argc == 3)
host = argv[2];
if (ulog_login(line, pwd->pw_name, host) != 0)
return (EX_OSFILE);
ulog_login(line, pwd->pw_name, host);
return (EX_OK);
} else if (argc == 2 && strcmp(argv[1], "logout") == 0) {
if (ulog_logout(line) != 0)
return (EX_OSFILE);
ulog_logout(line);
return (EX_OK);
}