=================================================================== RCS file: /cvs/cvs/blind/log.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- blind/log.c 2022/03/18 20:54:01 1.6 +++ blind/log.c 2022/03/19 06:16:18 1.7 @@ -1,5 +1,5 @@ /* -1;95;0c * Copyright (c) 2022 Daniel Kroczynski + * Copyright (c) 2022 Daniel Kroczynski * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -26,9 +26,9 @@ static int log_background; static int log_verbose; const char *log_procname; -void log_initialize(int, int); -void log_setverbose(int); -int log_getverbose(void); +void log_init(int, int); +void log_setv(int); +int log_getv(void); void log_send(const char *, va_list) __attribute__((__format__ (printf, 1, 0))); void log_info(const char *, ...) @@ -39,7 +39,7 @@ __dead void log_fatal(const char *, ...) __attribute__((__format__ (printf, 1, 2))); void -log_initialize(int background, int facility) +log_init(int background, int facility) { extern char *__progname; @@ -54,13 +54,13 @@ log_initialize(int background, int facility) } void -log_setverbose(int verb) +log_setv(int verb) { log_verbose = verb; } int -log_getverbose(void) +log_getv(void) { return (log_verbose); }