including: 3e0cafd6 supplementary registry design documentation a6b8a2c0 bugfix:do purge container when do_start_container failed 2a307813 image store: add UT 255fada4 image layer:fix code style 6766ace8 bugfix:fix exec --detach for shim v2 3c9d51bf bugfix for workdir len verify f55efffa bug fix: Isula ps not display N/A when ports empty 9006b290 bugfix:overwriting when i is len-1 Signed-off-by: Lu Jingxiao <lujingxiao@huawei.com> (cherry picked from commit ca9c755d85eeece47f587426603a8f0d5c99eac9)
26 lines
1012 B
Diff
26 lines
1012 B
Diff
From f55efffaeb1f28ac4e4e1b60b820b2b4694067b4 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=E6=AD=A6=E7=A7=AF=E8=B6=85?= <wujichao1@huawei.com>
|
|
Date: Tue, 26 Nov 2024 20:29:29 +0800
|
|
Subject: [PATCH 02/19] bug fix: Isula ps not display N/A when ports empty
|
|
|
|
---
|
|
src/cmd/isula/information/ps.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/cmd/isula/information/ps.c b/src/cmd/isula/information/ps.c
|
|
index 6bdc157f..5f46ef22 100644
|
|
--- a/src/cmd/isula/information/ps.c
|
|
+++ b/src/cmd/isula/information/ps.c
|
|
@@ -332,7 +332,7 @@ static void print_basic_container_info_item(const struct isula_container_summary
|
|
} else if (strcmp(name, "Created") == 0) {
|
|
print_created_field(in->created, length->created_length);
|
|
} else if (strcmp(name, "Ports") == 0) {
|
|
- const char *ports = (in->ports != NULL ? in->ports : "N/A");
|
|
+ const char *ports = (in->ports != NULL ? in->ports : " ");
|
|
printf("%-*s", (int)length->ports_length, ports);
|
|
}
|
|
}
|
|
--
|
|
2.23.0
|
|
|