Author: kevans
Date: Sat Feb 17 04:46:06 2018
New Revision: 329431
URL: https://svnweb.freebsd.org/changeset/base/329431

Log:
  stand/lua: Correct test sense, this should have been 'not nil'

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua   Sat Feb 17 04:43:41 2018        (r329430)
+++ head/stand/lua/config.lua   Sat Feb 17 04:46:06 2018        (r329431)
@@ -305,7 +305,7 @@ function config.loadkernel()
 
                        -- succeeded add path to module_path
                        if res ~= nil then
-                               if module_path == nil then
+                               if module_path ~= nil then
                                        loader.setenv("module_path", v..";"..
                                            module_path);
                                end
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to