websocklib: remove useless NULL-ness check.
authorKrisztian Litkey <krisztian.litkey@intel.com>
Thu, 6 Nov 2014 13:13:07 +0000 (15:13 +0200)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Thu, 6 Nov 2014 13:22:33 +0000 (15:22 +0200)
src/common/websocklib.c

index ddaf517..b056eca 100644 (file)
@@ -2069,17 +2069,13 @@ static void libwebsockets(const char *line)
         if (!l)
             break;
 
-        if (lvl != NULL) {
-            switch (lvl[0] | (lvl[1] << 8)) {
-            case 'd': mrp_debug("%*.*s", l, l, b);                      break;
-            case 'i': mrp_debug("%*.*s", l, l, b);                      break;
-            case 'w': mrp_log_warning("libwebsockets: %*.*s", l, l, b); break;
-            case 'e': mrp_log_error("libwebsockets: %*.*s", l, l, b);   break;
-            default:  mrp_debug("[%*.*s] %*.*s", ls, ls, lvl, l, l, b);
-            }
+        switch (lvl[0] | (lvl[1] << 8)) {
+        case 'd': mrp_debug("%*.*s", l, l, b);                      break;
+        case 'i': mrp_debug("%*.*s", l, l, b);                      break;
+        case 'w': mrp_log_warning("libwebsockets: %*.*s", l, l, b); break;
+        case 'e': mrp_log_error("libwebsockets: %*.*s", l, l, b);   break;
+        default:  mrp_debug("[%*.*s] %*.*s", ls, ls, lvl, l, l, b);
         }
-        else
-            mrp_debug("%*.*s", l, l, b);
 
         if (e != NULL) {
             b = e + 1;