#!/bin/sh
#
# A wrapper to call fusesmb with -s switch (to disable multi-threaded operations)
# It's a workaround for problems with Samba 3.2 (F9+)
# See bug 445978 - https://bugzilla.redhat.com/show_bug.cgi?id=445978
#
# by Marcin Zajaczkowski <mszpak ATT wp DOTT pl>
# version 0.1
# Script can be freely used for any purpose

echo WARNING. Multi-threaded operations are disabled. See bug 445978.
echo          To use original version run fusesmb-bin instead.

/usr/bin/fusesmb-bin -s "$@"

