aboutsummaryrefslogtreecommitdiffstats
path: root/planning
diff options
context:
space:
mode:
authorRoy Sindre Norangshol <roy.sindre@norangshol.no>2014-04-15 10:43:05 +0200
committerroot <root@frank.tg14.gathering.org>2014-04-15 10:43:05 +0200
commita9515634b61b307440b8996685b4f0785be1cb48 (patch)
tree4658e241bcf9e3a8df7a819d27d73939be0bc19c /planning
parent54d162803e6bedc754e7c8c3f1c529fc08eb1f2b (diff)
Planning to suffix distros with gw, to keep uniform dns names
Diffstat (limited to 'planning')
-rw-r--r--planning/planning.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/planning/planning.cpp b/planning/planning.cpp
index 0803f92..740e84e 100644
--- a/planning/planning.cpp
+++ b/planning/planning.cpp
@@ -303,7 +303,7 @@ void Planner::logprintf(const char *fmt, ...)
string distro_name(unsigned distro)
{
char buf[16];
- sprintf(buf, "distro%d", distro + 1);
+ sprintf(buf, "distro%dgw", distro + 1);
return buf;
}