X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;ds=sidebyside;f=src%2Fshared%2Fhelp.c;fp=src%2Fshared%2Fhelp.c;h=bcb349e88587fa81daab5dace871925c1df0d804;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=1c79fe303e66e230442726054bcc8056c9189f54;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b;p=ossec-hids.git diff --git a/src/shared/help.c b/src/shared/help.c old mode 100755 new mode 100644 index 1c79fe3..bcb349e --- a/src/shared/help.c +++ b/src/shared/help.c @@ -1,6 +1,3 @@ -/* @(#) $Id: ./src/shared/help.c, 2011/09/08 dcid Exp $ - */ - /* Copyright (C) 2009 Trend Micro Inc. * All rights reserved. * @@ -10,36 +7,16 @@ * Foundation */ -/* Part of the OSSEC HIDS - * Available at http://www.ossec.net/hids/ - */ - -/* Help Function - */ - +/* Help Function */ #include "shared.h" -void help(const char *prog) + +void print_header() { print_out(" "); print_out("%s %s - %s (%s)", __ossec_name, __version, __author, __contact); print_out("%s", __site); - print_out(" "); - print_out(" %s: -[Vhdt] [-u user] [-g group] [-c config] [-D dir]", prog); - print_out(" -V Version and license message"); - print_out(" -h This help message"); - print_out(" -d Execute in debug mode"); - print_out(" Can be specified up to two times"); - print_out(" to increase debug level"); - print_out(" -t Test configuration"); - print_out(" -f Run in foreground"); - print_out(" -u Run as 'user'"); - print_out(" -g Run as 'group'"); - print_out(" -c Read the 'config' file"); - print_out(" -D Chroot to 'dir'"); - print_out(" "); - exit(1); } void print_version() @@ -47,8 +24,6 @@ void print_version() print_out(" "); print_out("%s %s - %s", __ossec_name, __version, __author); print_out(" "); - print_out("%s",__license); + print_out("%s", __license); exit(1); } - -/* EOF */