summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2011-01-03 18:25:13 +0000
committerShaun Ruffell <sruffell@digium.com>2011-01-03 18:25:13 +0000
commiteda88515ac1478dd2d1196ba01481f4c39d268a4 (patch)
tree605bfe8ea8967a38d2bbb038416ddc01f893062c /include
parent6ee07d675d8175ef6d93824067909eee75b2e862 (diff)
dahdi_dynamic: Use const pointers for dahdi_dynamic_driver strings.
Signed-off-by: Shaun Ruffell <sruffell@digium.com> Acked-by: Kinsey Moore <kmoore@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9569 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'include')
-rw-r--r--include/dahdi/kernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dahdi/kernel.h b/include/dahdi/kernel.h
index 36eb542..72e9bae 100644
--- a/include/dahdi/kernel.h
+++ b/include/dahdi/kernel.h
@@ -988,10 +988,10 @@ struct dahdi_transcoder {
struct dahdi_dynamic_driver {
/*! Driver name (e.g. Eth) */
- char name[20];
+ const char *name;
/*! Driver description */
- char desc[80];
+ const char *desc;
/*! Create a new transmission pipe */
void *(*create)(struct dahdi_span *span, char *address);