9fans archive / 2001 / 05 / 472 /    prev next

From: erik quanstrom <quanstro@spe...>
Subject: [9fans] Standalone authentication server
Date: Wed, 30 May 2001 09:49:28 -0400 (EDT)

without looking at the script you are running, 
"rc: null list in concatenation" means that you 
are glomming something onto a null list (probablly
and undefined variable). for example

; echo ()^x
rc: null list in concatenation
; echo $bar^x
rc: null list in concatenation
; echo x$bar	# free caret
rc: null list in concatenation

interestingly, byron's rc allows null-list concatination

; echo ()^fu
fu

erik