summaryrefslogtreecommitdiff
path: root/net/kdenetwork11/files/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'net/kdenetwork11/files/patch-ac')
-rw-r--r--net/kdenetwork11/files/patch-ac58
1 files changed, 0 insertions, 58 deletions
diff --git a/net/kdenetwork11/files/patch-ac b/net/kdenetwork11/files/patch-ac
deleted file mode 100644
index dc476ff069c5..000000000000
--- a/net/kdenetwork11/files/patch-ac
+++ /dev/null
@@ -1,58 +0,0 @@
-*** kppp/opener.cpp~ Sat Dec 19 22:28:22 1998
---- kppp/opener.cpp Thu Dec 31 00:39:47 1998
-***************
-*** 71,75 ****
- struct iovec iov;
-
-! iov.iov_base = (void *) &request;
- iov.iov_len = sizeof(request);
-
---- 71,75 ----
- struct iovec iov;
-
-! iov.iov_base = (char *) &request;
- iov.iov_len = sizeof(request);
-
-***************
-*** 233,239 ****
-
- // Send data
-! iov[0].iov_base = (void *) response;
- iov[0].iov_len = sizeof(struct ResponseHeader);
-! iov[1].iov_base = (void *) path;
- iov[1].iov_len = strlen(path) + 1;
-
---- 233,239 ----
-
- // Send data
-! iov[0].iov_base = (char *) response;
- iov[0].iov_len = sizeof(struct ResponseHeader);
-! iov[1].iov_base = (char *) path;
- iov[1].iov_len = strlen(path) + 1;
-
-***************
-*** 243,247 ****
- control.cmsg.cmsg_type = MY_SCM_RIGHTS;
-
-! msg.msg_control = &control;
- msg.msg_controllen = control.cmsg.cmsg_len;
-
---- 243,247 ----
- control.cmsg.cmsg_type = MY_SCM_RIGHTS;
-
-! msg.msg_control = (char *) &control;
- msg.msg_controllen = control.cmsg.cmsg_len;
-
-***************
-*** 277,281 ****
-
- // Send data
-! iov.iov_base = (void *) response;
- iov.iov_len = sizeof(struct ResponseHeader);
-
---- 277,281 ----
-
- // Send data
-! iov.iov_base = (char *) response;
- iov.iov_len = sizeof(struct ResponseHeader);
-