Skip to content
Snippets Groups Projects
Commit e2d89ae2 authored by rswindell's avatar rswindell
Browse files

Renamed iniRead* functions to iniGet*.

parent 3edfec35
No related branches found
No related tags found
No related merge requests found
......@@ -1023,10 +1023,10 @@ int main(int argc, char** argv)
/* read/default any sbbscon-specific .ini keys here */
#if defined(__unix__)
SAFECOPY(new_uid_name,iniReadString(fp,"UNIX","User",""));
SAFECOPY(new_gid_name,iniReadString(fp,"UNIX","Group",""));
is_daemon=iniReadBool(fp,"UNIX","Daemonize",FALSE);
SAFECOPY(daemon_type,iniReadString(fp,"UNIX","LogFacility","U"));
SAFECOPY(new_uid_name,iniGetString(fp,"UNIX","User",""));
SAFECOPY(new_gid_name,iniGetString(fp,"UNIX","Group",""));
is_daemon=iniGetBool(fp,"UNIX","Daemonize",FALSE);
SAFECOPY(daemon_type,iniGetString(fp,"UNIX","LogFacility","U"));
#endif
/* close .ini file here */
if(fp!=NULL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment