PKCS11: Move syslog2stderr.c to programs/test

diff --git a/tests/scripts/pkcs11-client-test.sh b/tests/scripts/pkcs11-client-test.sh
index 37e08c7..05f8192 100755
--- a/tests/scripts/pkcs11-client-test.sh
+++ b/tests/scripts/pkcs11-client-test.sh
@@ -17,13 +17,13 @@
 # The SoftHSM library sends error messages to the system logs. If possible, send
 # the messages to standard error instead, by overloading the logging functions.
 if [ -n "${TOPDIR+1}" ] &&
-     make -C "$TOPDIR/programs" util/syslog2stderr.so >/dev/null 2>&1
+     make -C "$TOPDIR/programs" test/syslog2stderr.so >/dev/null 2>&1
 then
   case $(uname) in
     Darwin)
-      export DYLD_PRELOAD="${DYLD_PRELOAD-}:$TOPDIR/programs/util/syslog2stderr.so";;
+      export DYLD_PRELOAD="${DYLD_PRELOAD-}:$TOPDIR/programs/test/syslog2stderr.so";;
     *)
-      export LD_PRELOAD="${LD_PRELOAD-}:$TOPDIR/programs/util/syslog2stderr.so";;
+      export LD_PRELOAD="${LD_PRELOAD-}:$TOPDIR/programs/test/syslog2stderr.so";;
   esac
 fi