From: Eric Bollengier Date: Fri, 18 Feb 2011 08:11:14 +0000 (+0100) Subject: Fix #1696 about an error when displaying "Base" level keyword. X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7735cce018c828b75b0ee21093738a3494108859;p=bacula%2Fbacula Fix #1696 about an error when displaying "Base" level keyword. --- diff --git a/bacula/src/lib/util.c b/bacula/src/lib/util.c index 0625226b8c..be7aab7b13 100644 --- a/bacula/src/lib/util.c +++ b/bacula/src/lib/util.c @@ -421,6 +421,7 @@ const char *job_level_to_str(int level) switch (level) { case L_BASE: str = _("Base"); + break; case L_FULL: str = _("Full"); break;