aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-03-15 15:16:29 +0200
committerSergey Poznyakoff <gray@gnu.org>2018-03-15 15:16:29 +0200
commita6d33abe1d17ea1d004c645cc27120c92d7aa8e6 (patch)
treea752e9c99368d017c7da7ab8e731cfb706979068
parent58a8936d30bbb18b8ad93fecfe3fe2210d1c18b2 (diff)
downloadeclat-a6d33abe1d17ea1d004c645cc27120c92d7aa8e6.tar.gz
eclat-a6d33abe1d17ea1d004c645cc27120c92d7aa8e6.tar.bz2
Minor fixes
-rw-r--r--lib/confirm.c3
-rw-r--r--lib/forlan.c6
-rw-r--r--lib/forlangrm.y4
-rw-r--r--lib/forlanlex.l1
-rw-r--r--lib/ldapmap.c3
-rw-r--r--src/ispeek.c2
-rw-r--r--src/util.c5
7 files changed, 13 insertions, 11 deletions
diff --git a/lib/confirm.c b/lib/confirm.c
index ff60440..550a822 100644
--- a/lib/confirm.c
+++ b/lib/confirm.c
@@ -1,5 +1,5 @@
1/* This file is part of Eclat. 1/* This file is part of Eclat.
2 Copyright (C) 2012-2015 Sergey Poznyakoff. 2 Copyright (C) 2012-2018 Sergey Poznyakoff.
3 3
4 Eclat is free software; you can redistribute it and/or modify 4 Eclat is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -15,6 +15,7 @@
15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */ 15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
16 16
17#include "libeclat.h" 17#include "libeclat.h"
18#include <unistd.h>
18#include <sysexits.h> 19#include <sysexits.h>
19 20
20int 21int
diff --git a/lib/forlan.c b/lib/forlan.c
index 977271d..9fc80cb 100644
--- a/lib/forlan.c
+++ b/lib/forlan.c
@@ -1,5 +1,5 @@
1/* This file is part of Eclat. 1/* This file is part of Eclat.
2 Copyright (C) 2012-2015 Sergey Poznyakoff. 2 Copyright (C) 2012-2018 Sergey Poznyakoff.
3 3
4 Eclat is free software; you can redistribute it and/or modify 4 Eclat is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -979,10 +979,10 @@ func_sort(forlan_eval_env_t env, struct grecs_list *list)
979 forlan_compar = forlan_compar_string; 979 forlan_compar = forlan_compar_string;
980 forlan_sort_reverse = 0; 980 forlan_sort_reverse = 0;
981 981
982 if (ep = list->head->next) { 982 if ((ep = list->head->next)) {
983 t = ep->data; 983 t = ep->data;
984 forlan_sort_key = t->v.string; 984 forlan_sort_key = t->v.string;
985 if (ep = ep->next) { 985 if ((ep = ep->next)) {
986 char *p; 986 char *p;
987 987
988 t = ep->data; 988 t = ep->data;
diff --git a/lib/forlangrm.y b/lib/forlangrm.y
index 2db1274..9d44ec9 100644
--- a/lib/forlangrm.y
+++ b/lib/forlangrm.y
@@ -23,7 +23,7 @@
23#include <string.h> 23#include <string.h>
24 24
25int yylex(); 25int yylex();
26static int yyerror(char *); 26static int yyerror(char const *);
27union forlan_node *forlan_parse_tree; 27union forlan_node *forlan_parse_tree;
28size_t forlan_variable_count; 28size_t forlan_variable_count;
29static struct grecs_symtab *forlan_symtab; 29static struct grecs_symtab *forlan_symtab;
@@ -371,7 +371,7 @@ stmt_asgn : IDENT '=' node ';'
371 ; 371 ;
372%% 372%%
373static int 373static int
374yyerror(char *s) 374yyerror(char const *s)
375{ 375{
376 grecs_error(&yylloc, 0, "%s", s); 376 grecs_error(&yylloc, 0, "%s", s);
377 return 0; 377 return 0;
diff --git a/lib/forlanlex.l b/lib/forlanlex.l
index 62265cb..0fc469e 100644
--- a/lib/forlanlex.l
+++ b/lib/forlanlex.l
@@ -56,6 +56,7 @@ static int yywrap(void);
56 56
57%} 57%}
58 58
59%option noinput
59%option nounput 60%option nounput
60 61
61WS [ \t\f][ \t\f]* 62WS [ \t\f][ \t\f]*
diff --git a/lib/ldapmap.c b/lib/ldapmap.c
index 61cdf87..09b0689 100644
--- a/lib/ldapmap.c
+++ b/lib/ldapmap.c
@@ -1,5 +1,5 @@
1/* This file is part of Eclat. 1/* This file is part of Eclat.
2 Copyright (C) 2012-2015 Sergey Poznyakoff. 2 Copyright (C) 2012-2018 Sergey Poznyakoff.
3 3
4 Eclat is free software; you can redistribute it and/or modify 4 Eclat is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -21,6 +21,7 @@
21#include <sysexits.h> 21#include <sysexits.h>
22#include <signal.h> 22#include <signal.h>
23#include <pwd.h> 23#include <pwd.h>
24#include <unistd.h>
24 25
25enum { tls_no, tls_yes, tls_only }; 26enum { tls_no, tls_yes, tls_only };
26 27
diff --git a/src/ispeek.c b/src/ispeek.c
index 9e4f8e3..82837c6 100644
--- a/src/ispeek.c
+++ b/src/ispeek.c
@@ -146,7 +146,7 @@ print_file(const char *path, struct closure *cl)
146 die(EX_DATAERR, "%s: %s", str, json_err_diag); 146 die(EX_DATAERR, "%s: %s", str, json_err_diag);
147 } 147 }
148 148
149 while (key = *argv++) { 149 while ((key = *argv++)) {
150 struct json_value *p; 150 struct json_value *p;
151 char *s; 151 char *s;
152 152
diff --git a/src/util.c b/src/util.c
index 54a2e39..24b46ab 100644
--- a/src/util.c
+++ b/src/util.c
@@ -78,7 +78,7 @@ translate_ids(int argc, char **argv, const char *mapname)
78char * 78char *
79eclat_stpcpy(char *p, char *q) 79eclat_stpcpy(char *p, char *q)
80{ 80{
81 while (*p = *q++) 81 while ((*p = *q++))
82 ++p; 82 ++p;
83 return p; 83 return p;
84} 84}
@@ -232,7 +232,6 @@ eclat_send_request(struct ec2_request *orig, struct grecs_node **ret_tree)
232 time_t endtime; 232 time_t endtime;
233 unsigned long tts, t; 233 unsigned long tts, t;
234 struct grecs_node *xmltree = NULL; 234 struct grecs_node *xmltree = NULL;
235 void *sim;
236 235
237 endtime = time(NULL) + max_retry_time; 236 endtime = time(NULL) + max_retry_time;
238 tts = 2; 237 tts = 2;
@@ -447,7 +446,7 @@ read_file(const char *file)
447 char inbuf[4096]; 446 char inbuf[4096];
448 size_t n; 447 size_t n;
449 448
450 while (n = fread(inbuf, 1, sizeof(inbuf), stdin)) 449 while ((n = fread(inbuf, 1, sizeof(inbuf), stdin)) > 0)
451 grecs_txtacc_grow(acc, inbuf, n); 450 grecs_txtacc_grow(acc, inbuf, n);
452 grecs_txtacc_grow_char(acc, 0); 451 grecs_txtacc_grow_char(acc, 0);
453 if (ferror(stdin)) 452 if (ferror(stdin))

Return to:

Send suggestions and report system problems to the System administrator.