aboutsummaryrefslogtreecommitdiff
path: root/src/wydawca.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-03-06 22:33:05 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2013-03-06 22:45:10 +0200
commit826bb71c57d903f760c89406f93d19fe0c131de0 (patch)
treef2fc240d52d9be2d668a6ea8a813ab5de5732647 /src/wydawca.c
parent5b29f3ecc4e2edb172d50b23732a588b7a71ce62 (diff)
downloadwydawca-826bb71c57d903f760c89406f93d19fe0c131de0.tar.gz
wydawca-826bb71c57d903f760c89406f93d19fe0c131de0.tar.bz2
Replace mu_url_t with a custom URL.
Diffstat (limited to 'src/wydawca.c')
-rw-r--r--src/wydawca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wydawca.c b/src/wydawca.c
index f6767b8..1506b56 100644
--- a/src/wydawca.c
+++ b/src/wydawca.c
@@ -68,7 +68,7 @@ syslog_printer(int prio, const char *fmt, va_list ap)
if (syslog_include_prio) {
static char *fmtbuf;
static size_t fmtsize;
- const char *p = mu_syslog_priority_to_string(prio);
+ const char *p = wy_pritostr(prio);
size_t size = strlen(p) + 3 + strlen(fmt) + 1;
if (size > fmtsize) {
@@ -90,7 +90,7 @@ syslog_printer(int prio, const char *fmt, va_list ap)
void
stderr_printer(int prio, const char *fmt, va_list ap)
{
- const char *p = mu_syslog_priority_to_string(prio);
+ const char *p = wy_pritostr(prio);
fprintf(stderr, "%s: ", program_name);
if (p)

Return to:

Send suggestions and report system problems to the System administrator.