From 63c3f3235828dd6620625bcdf4d136a8babc55b1 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Sat, 2 Mar 2013 13:41:03 -0500 Subject: [PATCH] Add that check there --- qcsrc/common/notifications.qc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 96e881ca2..d49e56913 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -177,7 +177,10 @@ string Process_Notif_Args( switch(strtolower(selected)) { - #define ARG_CASE(prog,selected,result) case selected: { ++sel_num; break; } + #define ARG_CASE(prog,selected,result) \ + #if (prog != ARG_DC) \ + case selected: { ++sel_num; break; } \ + #endif NOTIF_ARGUMENT_LIST #undef ARG_CASE default: -- 2.39.2