# HG changeset patch # User Kim Alvefur # Date 1492627135 -7200 # Node ID 04eaaeb89a050a6e404e6e0db712f8fc75ea2d96 # Parent ee1c8145034530e83c41186e1a6137b7f70deae7 prosodyctl: Rename variable for soft-require success to improve readability diff -r ee1c81450345 -r 04eaaeb89a05 prosodyctl --- a/prosodyctl Wed Apr 19 20:26:09 2017 +0200 +++ b/prosodyctl Wed Apr 19 20:38:55 2017 +0200 @@ -136,9 +136,9 @@ local switched_user, current_uid; local want_pposix_version = "0.4.0"; -local ok, pposix = pcall(require, "util.pposix"); +local have_pposix, pposix = pcall(require, "util.pposix"); -if ok and pposix then +if have_pposix and pposix then if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end current_uid = pposix.getuid(); local arg_root = arg[1] == "--root";