aboutsummaryrefslogtreecommitdiff
path: root/net/kdenetwork4/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/kdenetwork4/files')
-rw-r--r--net/kdenetwork4/files/patch-configure23
-rw-r--r--net/kdenetwork4/files/patch-post-3.5.5-kdenetwork-ksirc.diff26
2 files changed, 0 insertions, 49 deletions
diff --git a/net/kdenetwork4/files/patch-configure b/net/kdenetwork4/files/patch-configure
deleted file mode 100644
index 00bec73d8263..000000000000
--- a/net/kdenetwork4/files/patch-configure
+++ /dev/null
@@ -1,23 +0,0 @@
---- configure Mon May 31 16:06:53 2004
-+++ configure Sun Jun 6 20:29:06 2004
-@@ -37996,20 +37996,7 @@
- echo $ECHO_N "(cached) $ECHO_C" >&6
- else
-
-- kde_cv_utmp_file=no
--
-- for ac_file in \
-- \
-- /var/run/utmp \
-- /var/adm/utmp \
-- /etc/utmp \
-- ; \
-- do
-- if test -r "$ac_file"; then
-- kde_cv_utmp_file=$ac_file
-- break
-- fi
-- done
-+ kde_cv_utmp_file=/var/run/utmp
-
- fi
diff --git a/net/kdenetwork4/files/patch-post-3.5.5-kdenetwork-ksirc.diff b/net/kdenetwork4/files/patch-post-3.5.5-kdenetwork-ksirc.diff
deleted file mode 100644
index db3f82833b43..000000000000
--- a/net/kdenetwork4/files/patch-post-3.5.5-kdenetwork-ksirc.diff
+++ /dev/null
@@ -1,26 +0,0 @@
-------------------------------------------------------------------------
-r621124 | mueller | 2007-01-08 11:33:10 +0100 (Mon, 08 Jan 2007) | 2 lines
-
-add fix for CVE-2006-6811
-
-------------------------------------------------------------------------
-Index: ksirc/iocontroller.cpp
-===================================================================
---- ksirc/iocontroller.cpp (revision 621123)
-+++ ksirc/iocontroller.cpp (revision 621124)
-@@ -266,13 +266,13 @@ void KSircIOController::stdout_read(KPro
- if(ksopts->autoCreateWin == TRUE && line[0] != '`' && line[1] != '#' && line[1] != '&' && noticeCreate) {
- //kdDebug(5008) << "Creating window for: " << qsname << " because of: " << line.data() << endl;
- ksircproc->new_toplevel(KSircChannel(ksircproc->serverName(), qsname));
-- assert(ksircproc->TopList[qsname] != 0x0);
- }
-- else{
-+ if (!ksircproc->TopList[qsname]) {
- qsname = "!default";
- if(line[0] == '`')
- qsname = "!discard";
- }
-+ assert(ksircproc->TopList[qsname]);
- }
-
- ksircproc->TopList[qsname]->sirc_receive(line);