Skip to content
Snippets Groups Projects
Commit 4ba1a81d authored by mcmlxxix's avatar mcmlxxix
Browse files

fix typo made by deuce

parent f0ef2cad
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,8 @@ writeln("\nMAKEUSER v2.0 - Adds User to Synchronet User Database\n"); ...@@ -252,7 +252,8 @@ writeln("\nMAKEUSER v2.0 - Adds User to Synchronet User Database\n");
newuser.security.restrictions = restrictions; newuser.security.restrictions = restrictions;
if(expire) if(expire)
newuser.security.expiration_date = time() + (expire*24*60*60); newuser.security.expiration_date = time() + (expire*24*60*60);
newuser.comment = comment; if(comment)
newuser.comment = comment;
writeln("User record #" + newuser.number + " " + newuser.alias + " created successfully."); writeln("User record #" + newuser.number + " " + newuser.alias + " created successfully.");
})(); })();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment