# # # patch "ChangeLog" # from [3d154730aed26a1d89a159e3cfb6370955505d85] # to [34bd13e543b4248f7cab019087e2bbe7f1a34365] # # patch "netsync.cc" # from [8473129fbbfc6f05efcb2471f7cfbce8e89f51ef] # to [e825d8573838e1020d58956a8e2083d84abe503f] # ============================================================ --- ChangeLog 3d154730aed26a1d89a159e3cfb6370955505d85 +++ ChangeLog 34bd13e543b4248f7cab019087e2bbe7f1a34365 @@ -1,3 +1,8 @@ +2006-12-27 Matthew Gregan + + * netsync.cc (struct session): Fix a very minor warning: const + static vs static const. + 2006-12-26 Matthew Gregan * Makefile.am (BOTAN_SOURCES): Remove entries for missing headers, ============================================================ --- netsync.cc 8473129fbbfc6f05efcb2471f7cfbce8e89f51ef +++ netsync.cc e825d8573838e1020d58956a8e2083d84abe503f @@ -332,19 +332,19 @@ session: bool encountered_error; - const static int no_error = 200; - const static int partial_transfer = 211; - const static int no_transfer = 212; + static const int no_error = 200; + static const int partial_transfer = 211; + static const int no_transfer = 212; - const static int not_permitted = 412; - const static int unknown_key = 422; - const static int mixing_versions = 432; + static const int not_permitted = 412; + static const int unknown_key = 422; + static const int mixing_versions = 432; - const static int role_mismatch = 512; - const static int bad_command = 521; + static const int role_mismatch = 512; + static const int bad_command = 521; - const static int failed_identification = 532; - //const static int bad_data = 541; + static const int failed_identification = 532; + //static const int bad_data = 541; int error_code;