X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fextnotify%2Fextnotify_main.c;h=7bbad0503b9eee9830c092c7bba334085b451a6d;hb=320f2c1b46a08add1e866be64a101329932b98d6;hp=097c9fef8f35a47f5879d0c33eadc191d34455f8;hpb=ea0ec5b4c8801733d437a329829e0847bcca5993;p=citadel.git diff --git a/citadel/modules/extnotify/extnotify_main.c b/citadel/modules/extnotify/extnotify_main.c index 097c9fef8..7bbad0503 100644 --- a/citadel/modules/extnotify/extnotify_main.c +++ b/citadel/modules/extnotify/extnotify_main.c @@ -174,7 +174,7 @@ eNotifyType extNotify_getConfigMessage(char *username, num_msgs = cdbfr->len / sizeof(long); cdb_free(cdbfr); } else { - MARKM_syslog(LOG_DEBUG, + syslog(LOG_DEBUG, "extNotify_getConfigMessage: " "No config messages found"); return eNone; /* No messages at all? No further action. */ @@ -392,7 +392,7 @@ void do_extnotify_queue(void) if (IsEmptyStr(CtdlGetConfigStr("c_pager_program")) && IsEmptyStr(CtdlGetConfigStr("c_funambol_host"))) { - MARKM_syslog(LOG_DEBUG, + syslog(LOG_DEBUG, "No external notifiers configured on system/user"); return; } @@ -409,7 +409,7 @@ void do_extnotify_queue(void) /* * Go ahead and run the queue */ - MARKM_syslog(LOG_DEBUG, "serv_extnotify: processing notify queue"); + syslog(LOG_DEBUG, "serv_extnotify: processing notify queue"); memset(&Ctx, 0, sizeof(NotifyContext)); if ((GetNotifyHosts(&Ctx) > 0) && @@ -426,7 +426,7 @@ void do_extnotify_queue(void) } CtdlForEachMessage(MSGS_ALL, 0L, NULL, SPOOLMIME, NULL, process_notify, &Ctx); - MARKM_syslog(LOG_DEBUG, "serv_extnotify: queue run completed"); + syslog(LOG_DEBUG, "serv_extnotify: queue run completed"); doing_queue = 0; if (Ctx.nNotifyHosts > 0) {