summaryrefslogtreecommitdiffstats
path: root/utils/eurephia_init.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a buffer overflow issue in eurephia_initDavid Sommerseth2010-08-271-2/+2
| | | | | | (cherry picked from commit 050585311ac7e6f17a0d4e33650ea3a5a4ee182b) Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
* Corrected a typo in eurephia_initDavid Sommerseth2010-08-271-1/+1
| | | | | | | | | | | | This was discovered during a documentation review done by Nate Lieby. sf.net ticket: https://sourceforge.net/tracker/?func=detail&aid=3052422&group_id=236344&atid=1099760 Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> (cherry picked from commit 43607466b843d77dee8be906c92793f09920fc31) Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
* Updated Copyright dates to include 2010David Sommerseth2010-05-251-2/+2
|
* Removed duplicated documentationDavid Sommerseth2009-10-051-3/+2
|
* Merge branch 'syslog'David Sommerseth2009-09-281-1/+1
|\
| * Added extra parameter to eurephia_log_init() to set log ident for syslogDavid Sommerseth2009-09-241-1/+1
| |
* | Fixed some memory leaks in eurephia_init, especially in error situationsDavid Sommerseth2009-09-271-12/+30
| |
* | Reworked eurephia_init to use the new eDBadminUserAccount() APIDavid Sommerseth2009-09-271-14/+66
|/
* Fixed and cleaned up Doxygen commentsDavid Sommerseth2009-09-221-1/+27
|
* Updated eurephia_init to also use eurephiaXML_ParseResultMsg()David Sommerseth2009-09-221-5/+11
|
* Modified eurephiadm and eurephia_init programs to use the new ↵David Sommerseth2009-09-211-2/+2
| | | | eDBadminAccessLevel() function
* BUGFIX: Sometimes get_console_input() would "skip" a prompt if data was ↵David Sommerseth2009-09-151-5/+5
| | | | | | | | | | | | | | still in the stream This happens when more data is entered than what fits into the buffer. Then the remaining input, including the new-line will be accepted automatically on the next get_console_input(). It's important to remember that the length argument of get_console_input() do not restrict how much data the user can type in. It only tells how big the receiving buffer is, thus leaving the remaining data in the file stream. The fix for eurephia_init was to make sure a bigger part of the buffer is used when calling get_console_input(), to be sure that new-line will be accepted into this buffer.
* Rewritten eurephia_init to use the new unified eDBadminConfiguration() functionDavid Sommerseth2009-09-151-12/+53
|
* Added debug logging of free_nullsafe() calls as wellDavid Sommerseth2009-09-071-1/+1
|
* Added missing privileges in eurephia_init when creating admin user accountDavid Sommerseth2009-09-031-1/+2
|
* More doxygen commentsDavid Sommerseth2009-09-031-3/+61
|
* Changed the short argument for --hash-threshold-maxDavid Sommerseth2009-08-221-3/+3
|
* Fixed wrong user access on fwprofiles in eurephia_initDavid Sommerseth2009-04-051-1/+1
| | | | Forgot to update eurephia_init after commit 5b6c3ba53f33dfe75ddfbb0cf62996f9b3d8de4c
* Using right plug-in path in eurephia_initDavid Sommerseth2009-03-301-1/+1
| | | | This is a regression introduced in commit cda490e1fc19904d015d8d5853af731d3cd983ea
* Added fwadmin in granted access on db initialisationDavid Sommerseth2009-03-301-1/+1
|
* Made the licence explicit GPLv2 onlyDavid Sommerseth2009-03-261-1/+1
|
* Cleaned up the code a little bitDavid Sommerseth2009-03-261-4/+2
| | | | | Made sure we only include needed include files and checked that the copyright headers are equal and correct
* Added utility to initialise and prepare a eurephia databaseDavid Sommerseth2009-03-221-0/+538
Run the utils/eurephia_init program to setup and do the initial configuration of eurephia. It needs 2 required arguments --database-driver <path to database driver> --database-args <arguments to the db driver> This utility will then guide you through a setup for the different configuration parameters used by eurephia.