lib/privileges: fix old workaround for nitc
authorAlexis Laferrière <alexis.laf@xymus.net>
Wed, 26 Nov 2014 16:44:00 +0000 (11:44 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Wed, 26 Nov 2014 20:03:49 +0000 (15:03 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/privileges.nit

index c542576..f17a28e 100644 (file)
@@ -90,8 +90,7 @@ class OptionUserAndGroup
                        return new UserGroup(words[0], words[1])
                else
                        errors.add("Option {names.join(", ")} expected parameter in the format \"user:group\" or simply \"user\".\n")
-                       abort # FIXME only for nitc, remove and replace with next line when FFI is working in nitg
-                       #return null
+                       return null
                end
        end
 end