From 776217ab003661fe0095ee75d56ed0fe954db2d9 Mon Sep 17 00:00:00 2001 From: fbt Date: Mon, 22 Feb 2016 23:19:06 +0300 Subject: [PATCH] 8fw now marks new files as private unless stated otherwise Signed-off-by: fbt --- ufw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ufw b/ufw index 899afbe..ecffd21 100755 --- a/ufw +++ b/ufw @@ -27,7 +27,7 @@ usage() { -F # Make a fullscreen shot instead of prompting for a window/area. Implies -s. -d # Supply a dexcription. -D # Delay the shot by seconds. - -p # Make the file private. Requires \$secret to be set in the config. + -p # Make the file public. -u # Generate a shortlink from URL. -m # Maximum filesize (takes K, M and G suffixes). @@ -257,7 +257,7 @@ main() { while [[ "$1" ]]; do case "$1" in - -p|--private) flag_private='true';; + -p|--private) flag_private='false';; -R|--remove-file) flag_rm='1';; -s|--screenshot) flag_scrot='1';;