summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xhfc/base.c4
-rw-r--r--xivovp/base.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/xhfc/base.c b/xhfc/base.c
index 59f619f..cb76918 100644
--- a/xhfc/base.c
+++ b/xhfc/base.c
@@ -1006,7 +1006,7 @@ void init_spans(struct xhfc* x)
DAHDI_CONFIG_TERM | DAHDI_CONFIG_NTTE |
DAHDI_CONFIG_AMI | DAHDI_CONFIG_CCS ;
- sprintf(dahdi_span->name, "XiVO_XHFC/%d", i+1);
+ sprintf(dahdi_span->name, "XIVO_XHFC/%d", i+1);
sprintf(dahdi_span->desc, "XHFC port %d", i+1);
dahdi_span->manufacturer = "Avencall";
dahdi_copy_string(dahdi_span->devicetype, "XHFC-4SU",
@@ -1027,7 +1027,7 @@ void init_spans(struct xhfc* x)
chan = xhfc_span->chans[j];
chan->pvt = x;
- sprintf(chan->name, "XiVO_XHFC/%d/%d", i + 1, j + 1);
+ sprintf(chan->name, "XIVO_XHFC/%d/%d", i + 1, j + 1);
if (j == 2) {
chan->sigcap = DAHDI_SIG_HARDHDLC;
diff --git a/xivovp/base.c b/xivovp/base.c
index 4b64635..a945612 100644
--- a/xivovp/base.c
+++ b/xivovp/base.c
@@ -660,12 +660,12 @@ static int span_init(void)
if (l->type == FXO_LINE) {
/* /!\ FXO uses FXS sig and vice-versa */
- sprintf(l->chan.name, "XiVO/FXO");
+ sprintf(l->chan.name, "XIVO/FXO");
l->chan.sigcap = DAHDI_SIG_FXSLS | DAHDI_SIG_FXSGS |
DAHDI_SIG_FXSKS;
} else if (l->type == FXS_LINE) {
- sprintf(l->chan.name, "XiVO/FXS");
+ sprintf(l->chan.name, "XIVO/FXS");
l->chan.sigcap = DAHDI_SIG_FXOLS | DAHDI_SIG_FXOGS |
DAHDI_SIG_FXOKS;
} else {