diff options
author | bp <bp@FreeBSD.org> | 2001-01-30 19:28:18 +0800 |
---|---|---|
committer | bp <bp@FreeBSD.org> | 2001-01-30 19:28:18 +0800 |
commit | 5b6c9b96db665106e09fa5d850c2a168be07b599 (patch) | |
tree | 394698dea30150dc56ecbd707ceedf9fd20744f9 /net/mars_nwe | |
parent | 6f6b25a0a18e9f02673c6e77789604d78108748f (diff) | |
download | freebsd-ports-gnome-5b6c9b96db665106e09fa5d850c2a168be07b599.tar.gz freebsd-ports-gnome-5b6c9b96db665106e09fa5d850c2a168be07b599.tar.zst freebsd-ports-gnome-5b6c9b96db665106e09fa5d850c2a168be07b599.zip |
Temporary security fixes.
Submitted by: Chris Faulhaber <jedgar@fxp.org>
Obtained from: Przemyslaw Frasunek <venglin@FREEBSD.LUBLIN.PL>
Diffstat (limited to 'net/mars_nwe')
-rw-r--r-- | net/mars_nwe/files/patch-ab | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net/mars_nwe/files/patch-ab b/net/mars_nwe/files/patch-ab new file mode 100644 index 000000000000..5491cf2418ea --- /dev/null +++ b/net/mars_nwe/files/patch-ab @@ -0,0 +1,21 @@ +--- tools.c.orig Fri Jan 26 22:46:34 2001 ++++ tools.c Fri Jan 26 22:46:59 2001 +@@ -189,7 +189,7 @@ + sprintf(identstr, "%s %d %3d", get_debstr(0), + act_connection, act_ncpsequence); + openlog(identstr, LOG_CONS, LOG_DAEMON); +- syslog(LOG_DEBUG, buf); ++ syslog(LOG_DEBUG, "%s", buf); + closelog(); + } else { + int l=strlen(buf); +@@ -249,7 +249,7 @@ + } + sprintf(identstr, "%s %d %3d", get_debstr(0), act_connection, act_ncpsequence); + openlog(identstr, LOG_CONS, LOG_DAEMON); +- syslog(prio, buf); ++ syslog(prio, "%s", buf); + closelog(); + if (!mode) return; + lologfile=stderr; + |