summaryrefslogtreecommitdiff
path: root/community/systemd
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-28 05:45:55 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-28 05:45:55 +0000
commit4d22176132f4a830ab0cc510dabbc9f8c1c362ea (patch)
tree9f97e7a21013e7ed7de7edb5426650be3a7b73e3 /community/systemd
parent33feb015eb09eee76827f359e685fce981d88111 (diff)
Sat May 28 05:45:54 UTC 2011
Diffstat (limited to 'community/systemd')
-rw-r--r--community/systemd/mqueue-signed-int.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/community/systemd/mqueue-signed-int.patch b/community/systemd/mqueue-signed-int.patch
deleted file mode 100644
index dc9ac3524..000000000
--- a/community/systemd/mqueue-signed-int.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/src/dbus-common.c b/src/dbus-common.c
-index fe7f84b..9bf0dab 100644
---- a/src/dbus-common.c
-+++ b/src/dbus-common.c
-@@ -569,15 +569,15 @@ int bus_property_append_ul(DBusMessageIter *i, const char *property, void *data)
- }
-
- int bus_property_append_long(DBusMessageIter *i, const char *property, void *data) {
-- uint64_t u;
-+ int64_t l;
-
- assert(i);
- assert(property);
- assert(data);
-
-- u = (int64_t) *(long*) data;
-+ l = (int64_t) *(long*) data;
-
-- if (!dbus_message_iter_append_basic(i, DBUS_TYPE_INT64, &u))
-+ if (!dbus_message_iter_append_basic(i, DBUS_TYPE_INT64, &l))
- return -ENOMEM;
-
- return 0;
-diff --git a/src/dbus-socket.c b/src/dbus-socket.c
-index b81569d..7194611 100644
---- a/src/dbus-socket.c
-+++ b/src/dbus-socket.c
-@@ -115,8 +115,8 @@ DBusHandlerResult bus_socket_message_handler(Unit *u, DBusConnection *c, DBusMes
- { "org.freedesktop.systemd1.Socket", "MaxConnections", bus_property_append_unsigned, "u", &u->socket.max_connections },
- { "org.freedesktop.systemd1.Socket", "NConnections", bus_property_append_unsigned, "u", &u->socket.n_connections },
- { "org.freedesktop.systemd1.Socket", "NAccepted", bus_property_append_unsigned, "u", &u->socket.n_accepted },
-- { "org.freedesktop.systemd1.Socket", "MessageQueueMaxMessages", bus_property_append_long,"t", &u->socket.mq_maxmsg },
-- { "org.freedesktop.systemd1.Socket", "MessageQueueMessageSize", bus_property_append_long,"t", &u->socket.mq_msgsize },
-+ { "org.freedesktop.systemd1.Socket", "MessageQueueMaxMessages", bus_property_append_long,"x", &u->socket.mq_maxmsg },
-+ { "org.freedesktop.systemd1.Socket", "MessageQueueMessageSize", bus_property_append_long,"x", &u->socket.mq_msgsize },
- { NULL, NULL, NULL, NULL, NULL }
- };
-