26 lines
890 B
Diff
26 lines
890 B
Diff
From e5368bb7b9c2681f802993f0225e832d5e647b70 Mon Sep 17 00:00:00 2001
|
|
From: licunlong <licunlong1@huawei.com>
|
|
Date: Fri, 2 Jun 2023 14:11:24 +0800
|
|
Subject: [PATCH] typo: fix some typoes, no functional change
|
|
|
|
---
|
|
core/bin/manager/commands.rs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/core/bin/manager/commands.rs b/core/bin/manager/commands.rs
|
|
index a8320e2..5eeb927 100644
|
|
--- a/core/bin/manager/commands.rs
|
|
+++ b/core/bin/manager/commands.rs
|
|
@@ -50,7 +50,7 @@ impl<T> Commands<T> {
|
|
let _ = socket::bind(socket_fd, &sctl_socket_addr);
|
|
/* restore our umask */
|
|
let _ = stat::umask(old_mask);
|
|
- /* Allow at most 10 incomming connections can queue */
|
|
+ /* Allow at most 10 incoming connections can queue */
|
|
let _ = socket::listen(socket_fd, 10);
|
|
Commands {
|
|
reli: Rc::clone(relir),
|
|
--
|
|
2.30.2
|
|
|