summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-03-30 00:30:44 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-03-30 00:30:44 +0200
commit2fa53f4932ad4e4268588bb69da4e36b2f8459e4 (patch)
tree24aaecdf2e12a2b129e2adb797a1fbec55c33337
parent925d1f5f41ab54913aa12cb98e81fbf2bb066335 (diff)
Drop spurious changes
-rw-r--r--eth-multiplexer/ChangeLog18
-rw-r--r--eth-multiplexer/README2
-rw-r--r--eth-multiplexer/demuxer.c2
-rw-r--r--eth-multiplexer/multiplexer.c6
-rw-r--r--eth-multiplexer/netfs_impl.c8
-rw-r--r--eth-multiplexer/netfs_impl.h2
-rw-r--r--eth-multiplexer/notify_impl.c2
-rw-r--r--eth-multiplexer/test.c2
8 files changed, 21 insertions, 21 deletions
diff --git a/eth-multiplexer/ChangeLog b/eth-multiplexer/ChangeLog
index 373711856..88eebaa2a 100644
--- a/eth-multiplexer/ChangeLog
+++ b/eth-multiplexer/ChangeLog
@@ -52,7 +52,7 @@
2008-12-12 Zheng Da <zhengda1936@gmail.com>
* multiplexer.c (main): Initialize the file status of the root node.
-
+
* netfs_impl.c (netfs_validate_stat): Set the file status of the node
with the one in the light node.
@@ -71,7 +71,7 @@
(remove_dead_port_from_dev): Use lock.
(broadcast_pack, broadcast_msg): Use foreach_dev_do.
- * vdev.h (dev_num): Remove declaration.
+ * vdev.h (dev_num): Remove declaration.
(get_dev_num): Add declaration.
2008-11-13 Zheng Da <zhengda1936@gmail.com>
@@ -100,7 +100,7 @@
(SRCS): Add new C files.
(LCLHDRS): Add new H files.
(HURDLIBS): Change libraries.
-
+
* demuxer.c: New file.
* device_impl.c: New file.
@@ -128,7 +128,7 @@
* README: Update.
* bpf_impl.c (destroy_filters): New function.
-
+
* multiplexer.c (nb_dev): Deleted.
(options): Remove the option '-v'.
(do_mach_notify_no_senders): Remove all port_info in the same way.
@@ -140,13 +140,13 @@
(main): Remove the code of creating virtual devices.
* util.h (ETH_P_IP): New macro.
-
+
* vdev.c (all_dev_close): Deleted.
(add_vdev): Link virtual device.
(destroy_vdev): New function.
* vdev.h (vether_device): Changed.
-
+
2008-10-03 Zheng Da <zhengda1936@gmail.com>
@@ -274,10 +274,10 @@
* multiplexer.c (options): Change the meaning of '-v' option.
(parse_opt): Change the way of handling '-v' option.
-
+
* vdev.c (has_vdev): New function.
- * vdev.h (has_vdev): New declaration.
+ * vdev.h (has_vdev): New declaration.
2008-8-17 Zheng Da <zhengda1936@gmail.com>
@@ -306,7 +306,7 @@
* vdev.c (all_dev_close): Change the way of testing if all devices are
closed.
-
+
* vdev.h (vether_device): Replace count field with used.
2008-8-13 Zheng Da <zhengda1936@gmail.com>
diff --git a/eth-multiplexer/README b/eth-multiplexer/README
index 0024a9372..940c7e49f 100644
--- a/eth-multiplexer/README
+++ b/eth-multiplexer/README
@@ -1,6 +1,6 @@
[Introduction]
-eth-multiplexer is a network multiplexer. It creates virtual ethernet interface and dispatches the packet to the right user program that opens its virtual interface. It also works as a bridge to connect the real ethernet interface and the virtual ones.
+eth-multiplexer is a network multiplexer. It creates virtual ethernet interface and dispatches the packet to the right user program that opens its virtual interface. It also works as a bridge to connect the real ethernet interface and the virtual ones.
[Usage]
diff --git a/eth-multiplexer/demuxer.c b/eth-multiplexer/demuxer.c
index 68bf9681d..1efbc6daa 100644
--- a/eth-multiplexer/demuxer.c
+++ b/eth-multiplexer/demuxer.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 1996, 2013 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
diff --git a/eth-multiplexer/multiplexer.c b/eth-multiplexer/multiplexer.c
index cc0024efb..9b661cd57 100644
--- a/eth-multiplexer/multiplexer.c
+++ b/eth-multiplexer/multiplexer.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 2008 Free Software Foundation, Inc.
Written by Zheng Da.
@@ -146,7 +146,7 @@ main (int argc, char *argv[])
}
/* Prepare for the notification. */
- err = ports_create_port (other_portclass, port_bucket,
+ err = ports_create_port (other_portclass, port_bucket,
sizeof (struct port_info), &notify_pi);
if (err)
error (1, err, "ports_create_port for notification");
@@ -172,7 +172,7 @@ main (int argc, char *argv[])
error (5, err, "Cannot create root node");
err = io_stat (root_file, &underlying_node_stat);
- if (err)
+ if (err)
error (6, err, "Cannot stat underlying node");
struct stat stat = underlying_node_stat;
diff --git a/eth-multiplexer/netfs_impl.c b/eth-multiplexer/netfs_impl.c
index 29ae072c0..040512a02 100644
--- a/eth-multiplexer/netfs_impl.c
+++ b/eth-multiplexer/netfs_impl.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 2008, 2009 Free Software Foundation, Inc.
Written by Zheng Da.
@@ -45,7 +45,7 @@
extern struct stat underlying_node_stat;
-int
+int
is_num (char *str)
{
for (; *str; str++)
@@ -164,12 +164,12 @@ error_t
netfs_validate_stat (struct node *node, struct iouser *cred)
{
struct stat st;
-
+
if (node->nn->ln)
st = node->nn->ln->st;
else
st = underlying_node_stat;
-
+
debug("node: %p", node);
node->nn_translated = S_ISLNK (st.st_mode) ? S_IFLNK : 0;
node->nn_stat = st;
diff --git a/eth-multiplexer/netfs_impl.h b/eth-multiplexer/netfs_impl.h
index 17c66f63e..a3b4c7d65 100644
--- a/eth-multiplexer/netfs_impl.h
+++ b/eth-multiplexer/netfs_impl.h
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 2008, 2009 Free Software Foundation, Inc.
Written by Zheng Da.
diff --git a/eth-multiplexer/notify_impl.c b/eth-multiplexer/notify_impl.c
index 947069ff4..eef554481 100644
--- a/eth-multiplexer/notify_impl.c
+++ b/eth-multiplexer/notify_impl.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 2008 Free Software Foundation, Inc.
Written by Zheng Da.
diff --git a/eth-multiplexer/test.c b/eth-multiplexer/test.c
index bf80583fe..7a4d63eca 100644
--- a/eth-multiplexer/test.c
+++ b/eth-multiplexer/test.c
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (C) 2008 Free Software Foundation, Inc.
Written by Zheng Da.