]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
move declaration to start of block
authorMark Andrews <marka@isc.org>
Thu, 8 Dec 2011 23:45:02 +0000 (23:45 +0000)
committerMark Andrews <marka@isc.org>
Thu, 8 Dec 2011 23:45:02 +0000 (23:45 +0000)
bin/dnssec/dnssec-signzone.c

index 6b1f353e737bcab1ec402aedd7a80a55a9bd9843..c8b2abfa58b8ee0592669ffafbc7af13eb762173 100644 (file)
@@ -29,7 +29,7 @@
  * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dnssec-signzone.c,v 1.283 2011/12/08 16:07:20 each Exp $ */
+/* $Id: dnssec-signzone.c,v 1.284 2011/12/08 23:45:02 marka Exp $ */
 
 /*! \file */
 
@@ -3827,8 +3827,8 @@ main(int argc, char *argv[]) {
                } else if (strcasecmp(outputformatstr, "raw") == 0) {
                        outputformat = dns_masterformat_raw;
                } else if (strncasecmp(outputformatstr, "raw=", 4) == 0) {
-                       outputformat = dns_masterformat_raw;
                        char *end;
+                       outputformat = dns_masterformat_raw;
 
                        outputformat = dns_masterformat_raw;
                        rawversion = strtol(outputformatstr + 4, &end, 10);