1 usb stick -> 2 mounted devices

Hello,

i am using a solaris thinclient that tries to connecting to a terminalserver. (RDP) Everything works fine, but the usb redirection. If i put in a usb stick i always get 2 usb-drives mounted. If i look in /tmp/SUNWut/mnt/<name of the host> i see 2 devices. One with the name of the usb-stick and one like diskx ( x is a number between 0 and 99). How can i manage it that only one device will be mounted ( the one with the name of the usb stick).
i got that line in my script, that do the usb redirection:

/opt/SUNWuttsc/bin/uttsc -m -b -l de -O -r disk:USBDRV=/tmp/SUNWut/mnt/${LOGNAME} ${__UTTSC_ARGS} ${1} || \

${LOGNAME} ${__UTTSC_ARGS} ${1} -> that part stand for--e.g utku1 or utku 19
maybe i can add some lines into the skript that will only mount the device which name is not like diskx.
like:

/opt/SUNWuttsc/bin/uttsc -m -b -l de -O -r disk:USBDRV=/tmp/SUNWut/mnt/${LOGNAME} ${__UTTSC_ARGS} ${1} || \
if devicename == disk then not mount;

i dont know. i am a absolutly newbie in solaris scripting.

I hope you guys unterstand my problem despite my bad english.
Cheers -anarcy

Check them with ls -ld, one of them might just be a symlink or somesuch.

ok i checked:

root@itsc-s001sp:/tmp/SUNWut/mnt/utku7# ls -ld
drwx------   3 utku7    utkiosk      311 Mar  4 13:46 .

and the 2 mounted divices:

root@itsc-s001sp:/tmp/SUNWut/mnt/utku7/disk1# ls -ld
drwxrwxrwx   1 root     root       16384 Jan  1  1970 .

root@itsc-s001sp:/tmp/SUNWut/mnt/utku7/intensio# ls -ld
drwxrwxrwx   1 root     root       16384 Jan  1  1970 .

well, both mounted devices have the same files inside. I don�t think that one of them is a symbolic link..or what ever!