Fix syntax-check warnings.
authorSimon Josefsson <simon@josefsson.org>
Sun, 24 Mar 2013 09:54:53 +0000 (10:54 +0100)
committerSimon Josefsson <simon@josefsson.org>
Sun, 24 Mar 2013 09:57:17 +0000 (10:57 +0100)
cfg.mk
lib/ASN1.y
lib/coding.c
lib/decoding.c
lib/libtasn1.map
src/benchmark.c
src/benchmark.h

diff --git a/cfg.mk b/cfg.mk
index 63c1830..c7d4400 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -39,6 +39,8 @@ exclude_file_name_regexp--sc_GPL_version = ^lib/libtasn1.h$$
 exclude_file_name_regexp--sc_program_name = ^tests/|examples/
 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/asn1Coding.c|src/asn1Decoding.c$$
 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/crlf.cer|tests/TestIndef.p12$$
+exclude_file_name_regexp--sc_error_message_uppercase = ^tests/Test_tree.c$$
+exclude_file_name_regexp--sc_unmarked_diagnostics = ^tests/Test_tree.c$$
 
 bootstrap-tools := autoconf,automake,libtool,bison
 gpg_key_ID = b565716f
index e633758..4934215 100644 (file)
@@ -871,8 +871,7 @@ _asn1_yyerror (const char *s)
     {
       snprintf (last_error_token, sizeof(last_error_token),
                 "%s", last_token);
-      fprintf(stderr, 
-               "%s:%u: Warning: %s is a built-in ASN.1 type.\n",
+      fprintf(stderr, "%s:%u: Warning: %s is a built-in ASN.1 type.\n",
                file_name, line_number, last_token);
       return;
     }
index 6aeb0ec..8dd6ae0 100644 (file)
@@ -192,13 +192,13 @@ asn1_octet_der (const unsigned char *str, int str_len,
  * @tl_len: the bytes of the @tl field
  *
  * Creates the DER encoding for various simple ASN.1 types like strings etc.
- * It stores the tag and length in @tl, which should have space for at least 
+ * It stores the tag and length in @tl, which should have space for at least
  * %ASN1_MAX_TL_SIZE bytes. Initially @tl_len should contain the size of @tl.
  *
  * The complete DER encoding should consist of the value in @tl appended
  * with the provided @str.
  *
- * Returns: %ASN1_SUCCESS if successful or an error value. 
+ * Returns: %ASN1_SUCCESS if successful or an error value.
  **/
 int
 asn1_encode_simple_der (unsigned int etype, const unsigned char *str,
index 4c4e232..eb83d89 100644 (file)
@@ -2878,7 +2878,7 @@ asn1_expand_octet_string (asn1_node definitions, asn1_node * element,
  * Decodes a simple DER encoded type (e.g. a string, which is not constructed).
  * The output is a pointer inside the @der.
  *
- * Returns: %ASN1_SUCCESS if successful or an error value. 
+ * Returns: %ASN1_SUCCESS if successful or an error value.
  **/
 int
 asn1_decode_simple_der (unsigned int etype, const unsigned char *der,
index f8f7c0f..4ddfd42 100644 (file)
@@ -57,4 +57,3 @@ LIBTASN1_0_3
   local:
     *;
 };
-
index 840e275..dcde7c0 100644 (file)
@@ -28,7 +28,7 @@
 
 int benchmark_must_finish = 0;
 
-#if defined(_WIN32)
+#if defined _WIN32
 #include <windows.h>
 DWORD WINAPI
 alarm_handler (LPVOID lpParameter)
@@ -90,7 +90,7 @@ start_benchmark (struct benchmark_st *st)
   gettime (&st->start);
   benchmark_must_finish = 0;
 
-#if defined(_WIN32)
+#if defined _WIN32
   st->wtimer = CreateWaitableTimer (NULL, TRUE, NULL);
   if (st->wtimer == NULL)
     {
@@ -126,7 +126,7 @@ stop_benchmark (struct benchmark_st *st, const char *metric)
   double dspeed, ddata;
   char imetric[16];
 
-#if defined(_WIN32)
+#if defined _WIN32
   if (st->wtimer != NULL)
     CloseHandle (st->wtimer);
   if (st->wthread != NULL)
index 0e7b11d..4e952a5 100644 (file)
@@ -20,7 +20,7 @@
 #include <sys/time.h>
 #include <time.h>
 #include <signal.h>
-#if defined(_WIN32)
+#if defined _WIN32
 #include <windows.h>
 #endif
 #include "timespec.h"          /* gnulib gettime */
@@ -32,7 +32,7 @@ struct benchmark_st
   struct timespec start;
   unsigned long size;
   sighandler_t old_handler;
-#if defined(_WIN32)
+#if defined _WIN32
   HANDLE wtimer;
   HANDLE wthread;
   LARGE_INTEGER alarm_timeout;