summaryrefslogtreecommitdiffstats
path: root/init.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-04-22 09:27:07 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-04-22 09:27:07 +0000
commitf3d518406adabfb0bedbf7fb387726251172fe95 (patch)
tree2f4782f2aaee807a6c32b203823066294b680565 /init.c
parent574983e725f622712d8a67be67ecd3dd784cf214 (diff)
Handle sort_aux="threads" somewhat different, and probably more
safely. Problem and principle of fix noted by Gero Treuner and Michael Tatge <Michael.Tatge@studserv.uni-stuttgart.de>.
Diffstat (limited to 'init.c')
-rw-r--r--init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.c b/init.c
index 68429cbf..be4e3458 100644
--- a/init.c
+++ b/init.c
@@ -1127,6 +1127,9 @@ static int parse_set (BUFFER *tmp, BUFFER *s, unsigned long data, BUFFER *err)
map = SortKeyMethods;
break;
#endif
+ case DT_SORT_AUX:
+ map = SortAuxMethods;
+ break;
default:
map = SortMethods;
break;