smpp: Only write the systemd-id if it is not empty

system_id is a char array, which makes the NULL check a tautology,
so we should check with strlen if the string is empty or not.

This is fixing the "write" command of VTY that would otherwise
create a config file that can not be parsed.
This commit is contained in:
Holger Hans Peter Freyther 2013-06-12 09:22:07 +02:00
parent a1c09a401d
commit b0bf1da4c8
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ static int config_write_smpp(struct vty *vty)
vty_out(vty, "smpp%s", VTY_NEWLINE);
vty_out(vty, " local-tcp-port %u%s", smsc->listen_port, VTY_NEWLINE);
if (smsc->system_id)
if (smsc->system_id && strlen(smsc->system_id) > 0)
vty_out(vty, " system-id %s%s", smsc->system_id, VTY_NEWLINE);
vty_out(vty, " policy %s%s",
smsc->accept_all ? "accept-all" : "closed", VTY_NEWLINE);