diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-07-26 07:51:52 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-07-26 07:51:52 +0000 |
commit | 42cd1740e9929ebc3eb0c490fdf447adb45f1983 (patch) | |
tree | 1fa59a5988889c2489d3f5ca689e9cb01089df62 /security/osiris | |
parent | b8f3048294fe85db5ab4de2d8ec5d34ddbf54101 (diff) | |
download | ports-42cd1740e9929ebc3eb0c490fdf447adb45f1983.tar.gz ports-42cd1740e9929ebc3eb0c490fdf447adb45f1983.zip |
Notes
Diffstat (limited to 'security/osiris')
-rw-r--r-- | security/osiris/Makefile | 3 | ||||
-rw-r--r-- | security/osiris/files/patch-logging | 66 |
2 files changed, 68 insertions, 1 deletions
diff --git a/security/osiris/Makefile b/security/osiris/Makefile index 7148981d6b1c..498caba9a5d9 100644 --- a/security/osiris/Makefile +++ b/security/osiris/Makefile @@ -7,9 +7,10 @@ PORTNAME= osiris PORTVERSION= 4.2.0 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.hostintegrity.com/osiris/data/ \ - http://darkambient.net/ + http://redundancy.redundancy.org/mirror/ MAINTAINER= lx@redundancy.redundancy.org COMMENT= The Shmoo client/server host integrity checker diff --git a/security/osiris/files/patch-logging b/security/osiris/files/patch-logging new file mode 100644 index 000000000000..208aa582fea8 --- /dev/null +++ b/security/osiris/files/patch-logging @@ -0,0 +1,66 @@ +--- src/osirisd/logging.c ++++ src/osirisd/logging.c +@@ -93,7 +93,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( SYSLOG_FACILITY | LOG_ERR ), header ); ++ syslog( ( SYSLOG_FACILITY | LOG_ERR ), "%s", header ); + #endif + } + +@@ -147,7 +147,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( SYSLOG_FACILITY | LOG_INFO ), header ); ++ syslog( ( SYSLOG_FACILITY | LOG_INFO ), "%s", header ); + #endif + } + +@@ -201,7 +201,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( SYSLOG_FACILITY | LOG_WARNING ), header ); ++ syslog( ( SYSLOG_FACILITY | LOG_WARNING ), "%s", header ); + #endif + } + +--- src/osirismd/logging.c ++++ src/osirismd/logging.c +@@ -106,7 +106,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( syslog_facility | LOG_ERR ), header ); ++ syslog( ( syslog_facility | LOG_ERR ), "%s", header ); + #endif + } + +@@ -168,7 +168,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( syslog_facility | LOG_INFO ), header ); ++ syslog( ( syslog_facility | LOG_INFO ), "%s", header ); + #endif + } + +@@ -230,7 +230,7 @@ + fprintf( stdout, "\n" ); + } + #else +- syslog( ( syslog_facility | LOG_WARNING ), header ); ++ syslog( ( syslog_facility | LOG_WARNING ), "%s", header ); + #endif + } + +@@ -281,7 +281,7 @@ + NULL); /* no raw data */ + } + #else +- syslog( ( syslog_facility | LOG_INFO ), buffer ); ++ syslog( ( syslog_facility | LOG_INFO ), "%s", buffer ); + #endif + } |