chiark
/
gitweb
/
~mdw
/
fwd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
370e3c1
)
Terminate tables of sources and targets.
author
mdw
<mdw>
Sat, 12 Feb 2000 18:13:20 +0000
(18:13 +0000)
committer
mdw
<mdw>
Sat, 12 Feb 2000 18:13:20 +0000
(18:13 +0000)
conf.c
patch
|
blob
|
blame
|
history
diff --git
a/conf.c
b/conf.c
index 3211db1d11d0217b59ae4fc639587ac1ce5f0567..dfc376583a1b06330fa46bc06dc82186caaeb0bd 100644
(file)
--- a/
conf.c
+++ b/
conf.c
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: conf.c,v 1.
5 1999/10/22 22:46:44
mdw Exp $
+ * $Id: conf.c,v 1.
6 2000/02/12 18:13:20
mdw Exp $
*
* Configuration parsing
*
*
* Configuration parsing
*
@@
-29,6
+29,9
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: conf.c,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: conf.c,v $
+ * Revision 1.6 2000/02/12 18:13:20 mdw
+ * Terminate tables of sources and targets.
+ *
* Revision 1.5 1999/10/22 22:46:44 mdw
* Improve documentation for conf_enum.
*
* Revision 1.5 1999/10/22 22:46:44 mdw
* Improve documentation for conf_enum.
*
@@
-73,8
+76,10
@@
/*----- Source and target tables ------------------------------------------*/
/*----- Source and target tables ------------------------------------------*/
-static source_ops *sources[] = { &xsource_ops, &fsource_ops, &ssource_ops };
-static target_ops *targets[] = { &xtarget_ops, &ftarget_ops, &starget_ops };
+static source_ops *sources[] =
+ { &xsource_ops, &fsource_ops, &ssource_ops, 0 };
+static target_ops *targets[] =
+ { &xtarget_ops, &ftarget_ops, &starget_ops, 0 };
static const char *notword = 0;
static const char *notdelim = 0;
static const char *notword = 0;
static const char *notdelim = 0;