From 7d8670e72c8a364154245fddb1b60c9fd6ff4112 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 29 Dec 2011 09:38:11 +0100 Subject: [PATCH] Minor bugfix in the binary. --- bin/slsb-set | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/slsb-set b/bin/slsb-set index 30f9cd8..b276dcb 100755 --- a/bin/slsb-set +++ b/bin/slsb-set @@ -72,7 +72,7 @@ if options.hide: elif options.secret_message == "" and options.secret_file != "": secret = tools.binary2base64(options.secret_file) - img_encoded = hide(options.input_image_file, secret, options.generator_function) + img_encoded = slsbset.hide(options.input_image_file, secret, options.generator_function) try: img_encoded.save(options.output_image_file) except Exception, e: @@ -81,7 +81,7 @@ if options.hide: elif options.reveal: try: - secret = reveal(options.input_image_file, options.generator_function) + secret = slsbset.reveal(options.input_image_file, options.generator_function) except IndexError: print "Impossible to detect message." exit(0)