summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2010-03-29 21:04:55 +0000
committerKinsey Moore <kmoore@digium.com>2010-03-29 21:04:55 +0000
commit804297a35eb72fb7240160ed6a8f070ac5f7495a (patch)
tree19c599291cd860b9ce4f7e02533438476aeda6bd
parent0f2361a32db7bbd0bbb1dd6b4a5dd8c7ddb3d438 (diff)
Add a space between words and correct an error message.
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@8444 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--dahdi_maint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dahdi_maint.c b/dahdi_maint.c
index fe59ed7..69c3164 100644
--- a/dahdi_maint.c
+++ b/dahdi_maint.c
@@ -176,7 +176,7 @@ int main(int argc, char *argv[])
res = ioctl(ctl, DAHDI_MAINT, &m);
if (res)
printf("This type of looping not supported by the"\
- "driver for this span\n");
+ " driver for this span\n");
}
if (iflag) {
@@ -213,8 +213,8 @@ int main(int argc, char *argv[])
m.command = DAHDI_MAINT_PRBS;
res = ioctl(ctl, DAHDI_MAINT, &m);
if (res) {
- printf("This type of error injection is not supported"\
- " by the driver for this span\n");
+ printf("Pseudo-random binary sequence generation is"\
+ " not supported by the driver for this span\n");
}
}