From 850d4704e4bc122f1e544b21601c87842f658096 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 27 Jun 2004 08:41:55 +0000 Subject: [PATCH] Doppelte @ ignorieren --- src/common/kernel/order.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/kernel/order.c b/src/common/kernel/order.c index fc48c6be7..1c007b68f 100644 --- a/src/common/kernel/order.c +++ b/src/common/kernel/order.c @@ -114,11 +114,9 @@ parse_order(const char * s, const struct locale * lang) ord->next = NULL; #ifdef AT_PERSISTENT - if (*s=='@') { + while (*s=='@') { ord->_persistent = 1; -#ifdef SHORT_STRINGS ++s; -#endif } #endif sptr = s;