aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/main.c')
-rw-r--r--src/firejail/main.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/firejail/main.c b/src/firejail/main.c
index b51ba2e65..15720b4c6 100644
--- a/src/firejail/main.c
+++ b/src/firejail/main.c
@@ -1542,17 +1542,17 @@ int main(int argc, char **argv) {
1542 Bridge *br = last_bridge_configured(); 1542 Bridge *br = last_bridge_configured();
1543 if (br == NULL) { 1543 if (br == NULL) {
1544 fprintf(stderr, "Error: no network device configured\n"); 1544 fprintf(stderr, "Error: no network device configured\n");
1545 return 1; 1545 exit(1);
1546 } 1546 }
1547 if (mac_not_zero(br->macsandbox)) { 1547 if (mac_not_zero(br->macsandbox)) {
1548 fprintf(stderr, "Error: cannot configure the MAC address twice for the same interface\n"); 1548 fprintf(stderr, "Error: cannot configure the MAC address twice for the same interface\n");
1549 return 1; 1549 exit(1);
1550 } 1550 }
1551 1551
1552 // read the address 1552 // read the address
1553 if (atomac(argv[i] + 6, br->macsandbox)) { 1553 if (atomac(argv[i] + 6, br->macsandbox)) {
1554 fprintf(stderr, "Error: invalid MAC address\n"); 1554 fprintf(stderr, "Error: invalid MAC address\n");
1555 return 1; 1555 exit(1);
1556 } 1556 }
1557 } 1557 }
1558 else { 1558 else {
@@ -1566,12 +1566,12 @@ int main(int argc, char **argv) {
1566 Bridge *br = last_bridge_configured(); 1566 Bridge *br = last_bridge_configured();
1567 if (br == NULL) { 1567 if (br == NULL) {
1568 fprintf(stderr, "Error: no network device configured\n"); 1568 fprintf(stderr, "Error: no network device configured\n");
1569 return 1; 1569 exit(1);
1570 } 1570 }
1571 1571
1572 if (sscanf(argv[i] + 6, "%d", &br->mtu) != 1 || br->mtu < 576 || br->mtu > 9198) { 1572 if (sscanf(argv[i] + 6, "%d", &br->mtu) != 1 || br->mtu < 576 || br->mtu > 9198) {
1573 fprintf(stderr, "Error: invalid mtu value\n"); 1573 fprintf(stderr, "Error: invalid mtu value\n");
1574 return 1; 1574 exit(1);
1575 } 1575 }
1576 } 1576 }
1577 else { 1577 else {
@@ -1585,11 +1585,11 @@ int main(int argc, char **argv) {
1585 Bridge *br = last_bridge_configured(); 1585 Bridge *br = last_bridge_configured();
1586 if (br == NULL) { 1586 if (br == NULL) {
1587 fprintf(stderr, "Error: no network device configured\n"); 1587 fprintf(stderr, "Error: no network device configured\n");
1588 return 1; 1588 exit(1);
1589 } 1589 }
1590 if (br->arg_ip_none || br->ipsandbox) { 1590 if (br->arg_ip_none || br->ipsandbox) {
1591 fprintf(stderr, "Error: cannot configure the IP address twice for the same interface\n"); 1591 fprintf(stderr, "Error: cannot configure the IP address twice for the same interface\n");
1592 return 1; 1592 exit(1);
1593 } 1593 }
1594 1594
1595 // configure this IP address for the last bridge defined 1595 // configure this IP address for the last bridge defined
@@ -1598,7 +1598,7 @@ int main(int argc, char **argv) {
1598 else { 1598 else {
1599 if (atoip(argv[i] + 5, &br->ipsandbox)) { 1599 if (atoip(argv[i] + 5, &br->ipsandbox)) {
1600 fprintf(stderr, "Error: invalid IP address\n"); 1600 fprintf(stderr, "Error: invalid IP address\n");
1601 return 1; 1601 exit(1);
1602 } 1602 }
1603 } 1603 }
1604 } 1604 }
@@ -1613,11 +1613,11 @@ int main(int argc, char **argv) {
1613 Bridge *br = last_bridge_configured(); 1613 Bridge *br = last_bridge_configured();
1614 if (br == NULL) { 1614 if (br == NULL) {
1615 fprintf(stderr, "Error: no network device configured\n"); 1615 fprintf(stderr, "Error: no network device configured\n");
1616 return 1; 1616 exit(1);
1617 } 1617 }
1618 if (br->arg_ip_none || br->ip6sandbox) { 1618 if (br->arg_ip_none || br->ip6sandbox) {
1619 fprintf(stderr, "Error: cannot configure the IP address twice for the same interface\n"); 1619 fprintf(stderr, "Error: cannot configure the IP address twice for the same interface\n");
1620 return 1; 1620 exit(1);
1621 } 1621 }
1622 1622
1623 // configure this IP address for the last bridge defined 1623 // configure this IP address for the last bridge defined
@@ -1625,7 +1625,7 @@ int main(int argc, char **argv) {
1625 br->ip6sandbox = argv[i] + 6; 1625 br->ip6sandbox = argv[i] + 6;
1626// if (atoip(argv[i] + 5, &br->ipsandbox)) { 1626// if (atoip(argv[i] + 5, &br->ipsandbox)) {
1627// fprintf(stderr, "Error: invalid IP address\n"); 1627// fprintf(stderr, "Error: invalid IP address\n");
1628// return 1; 1628// exit(1);
1629// } 1629// }
1630 } 1630 }
1631 else { 1631 else {
@@ -1639,7 +1639,7 @@ int main(int argc, char **argv) {
1639 if (checkcfg(CFG_NETWORK)) { 1639 if (checkcfg(CFG_NETWORK)) {
1640 if (atoip(argv[i] + 12, &cfg.defaultgw)) { 1640 if (atoip(argv[i] + 12, &cfg.defaultgw)) {
1641 fprintf(stderr, "Error: invalid IP address\n"); 1641 fprintf(stderr, "Error: invalid IP address\n");
1642 return 1; 1642 exit(1);
1643 } 1643 }
1644 } 1644 }
1645 else { 1645 else {