makekeys: Always continue when no alias match found
authorDan Nicholson <dbn.lists@gmail.com>
Fri, 23 Jan 2009 02:09:51 +0000 (18:09 -0800)
committerDan Nicholson <dbn.lists@gmail.com>
Thu, 19 Mar 2009 18:51:10 +0000 (11:51 -0700)
src/makekeys/makekeys.c

index a463dac..3eb1027 100644 (file)
@@ -171,7 +171,7 @@ main(int argc, char *argv[])
             ret = get_xf86_keysym(buf, key, sizeof(key), ksnum);
         if (!ret) {
             ret = get_xf86_keysym_alias(buf, key, sizeof(key), ksnum);
-            if (!ret)
+            if (ret < 1)
                 continue;
         }