From b5b33a50fcb3a5e19751a38ad7b3cc71dfcdbfaf Mon Sep 17 00:00:00 2001 From: Moritz Wilhelmy Date: Tue, 24 Jan 2012 21:24:49 +0100 Subject: properly quote all uses of $STAT. Signed-off-by: Florian Pritz --- fb.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fb.in b/fb.in index 52447a6..7d47ee8 100644 --- a/fb.in +++ b/fb.in @@ -68,7 +68,7 @@ request_helper() { if [ "$mode" = "u" ]; then basefilename=`basename -- "$file"` - if [ `$STAT -- "$file"` -eq "0" ] || echo "$basefilename" | grep -F -q ","; then + if [ "`$STAT -- "$file"`" -eq "0" ] || echo "$basefilename" | grep -F -q ","; then base64fn="`base64_encode "$basefilename"`" curl $CURLOPTS -F "file=@-" -F "filename=$base64fn" "$url" < "$file" -o /dev/stdout else @@ -143,9 +143,9 @@ do_upload() { fi TMPFILE=`mktemp "$TMPDIR/data.XXXXXX"` - if [ `$STAT -- "$file"` -gt "$WARNSIZE" ]; then + if [ "`$STAT -- "$file"`" -gt "$WARNSIZE" ]; then WARNSIZE=`request_helper d "$PASTEBIN/file/get_max_size"` - if [ `$STAT -- "$file"` -gt "$WARNSIZE" ]; then + if [ "`$STAT -- "$file"`" -gt "$WARNSIZE" ]; then echo "Warning: Your upload is too big and would be rejected. Maximum size is: $WARNSIZE bytes. Skipping..." >&2 return 1 fi -- cgit v1.2.3-24-g4f1b