aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--planning/planning.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/planning/planning.cpp b/planning/planning.cpp
index e2cd012..215ae7f 100644
--- a/planning/planning.cpp
+++ b/planning/planning.cpp
@@ -321,8 +321,8 @@ string distro_name(unsigned distro)
string port_name(unsigned distro, unsigned portnum)
{
char buf[16];
- int distros[] = { 1, 2, 5, 6 };
- sprintf(buf, "Gi%u/%u", distros[portnum / 48], (portnum % 48) + 1);
+ int distros[] = { 0, 1, 2, 3 };
+ sprintf(buf, "ge-%u/0/%u", distros[portnum / 48], (portnum % 48));
return buf;
}