1
0
Fork 0
mirror of https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git synced 2025-08-07 06:20:55 +02:00

Fix fallback to hardcoded orbits

This commit is contained in:
Tim Schubert 2020-09-19 11:39:47 +02:00
parent a82e22aab7
commit 2cde1ba266
No known key found for this signature in database
GPG key ID: 99658A3EB5CD7C13
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ int main (int argc, char *argv[])
LeoOrbitNodeHelper orbit;
NodeContainer satellites;
if (orbitFile.empty())
if (!orbitFile.empty())
{
satellites = orbit.Install (orbitFile);
}

View file

@ -136,7 +136,7 @@ int main (int argc, char *argv[])
LeoOrbitNodeHelper orbit;
NodeContainer satellites;
if (orbitFile.empty())
if (!orbitFile.empty())
{
satellites = orbit.Install (orbitFile);
}