diff --git a/apps/app_queue.c b/apps/app_queue.c
index ae0237847229a4f9d3166e2dc8b9d9c1bfa95bec..255da9cede56e1a8c42b9f91f2531bdce543d80c 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -839,7 +839,7 @@ static void queue_set_param(struct call_queue *q, const char *param, const char
 		q->periodicannouncefrequency = atoi(val);
 	} else if (!strcasecmp(param, "retry")) {
 		q->retry = atoi(val);
-		if (q->retry < 0)
+		if (q->retry <= 0)
 			q->retry = DEFAULT_RETRY;
 	} else if (!strcasecmp(param, "wrapuptime")) {
 		q->wrapuptime = atoi(val);