summaryrefslogtreecommitdiff
path: root/0160-bug-fix-Isula-ps-not-display-N-A-when-ports-empty.patch
blob: 9551235ad51dfe08b00afb5f486d97ea7872c648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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