summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-02-29 20:32:02 +0100
committerLennart Poettering <lennart@poettering.net>2016-02-29 20:32:02 +0100
commitecb7c4488eb67ff2058f1efc4ea3e56678e38cb9 (patch)
tree6af5e0829fae615ff89052100495cb922a18b1d1
parent95979cb3e6cc01a745dff659ab90388db733fc35 (diff)
parent07edd3b9e5855332a02ef7b91602c93aa12c1fd1 (diff)
Merge pull request #2769 from martinpitt/adjtime
Fixes for adjtime parsing
-rw-r--r--src/test/test-clock.c12
-rw-r--r--src/timedate/timedated.c4
2 files changed, 8 insertions, 8 deletions
diff --git a/src/test/test-clock.c b/src/test/test-clock.c
index b049d97ce7..84f775e5bc 100644
--- a/src/test/test-clock.c
+++ b/src/test/test-clock.c
@@ -28,8 +28,8 @@
static void test_clock_is_localtime(void) {
char adjtime[] = "/tmp/test-adjtime.XXXXXX";
- _cleanup_close_ int fd = -1;
- FILE* f;
+ int fd = -1;
+ _cleanup_fclose_ FILE* f = NULL;
static const struct scenario {
const char* contents;
@@ -56,10 +56,10 @@ static void test_clock_is_localtime(void) {
assert_se(clock_is_localtime("/nonexisting/adjtime") == 0);
fd = mkostemp_safe(adjtime, O_WRONLY|O_CLOEXEC);
- assert(fd > 0);
+ assert_se(fd >= 0);
log_info("adjtime test file: %s", adjtime);
f = fdopen(fd, "w");
- assert(f);
+ assert_se(f);
for (size_t i = 0; i < ELEMENTSOF(scenarios); ++i) {
log_info("scenario #%zu:, expected result %i", i, scenarios[i].expected_result);
@@ -82,10 +82,10 @@ static void test_clock_is_localtime_system(void) {
log_info("/etc/adjtime exists, clock_is_localtime() == %i", r);
/* if /etc/adjtime exists we expect some answer, no error or
* crash */
- assert(r == 0 || r == 1);
+ assert_se(r == 0 || r == 1);
} else
/* default is UTC if there is no /etc/adjtime */
- assert(r == 0);
+ assert_se(r == 0);
}
int main(int argc, char *argv[]) {
diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c
index 9406d28abe..0febc36af8 100644
--- a/src/timedate/timedated.c
+++ b/src/timedate/timedated.c
@@ -131,10 +131,10 @@ static int context_write_data_local_rtc(Context *c) {
size_t a, b;
p = strchrnul(s, '\n');
- if (*p == '\0') {
+ if (*p == '\0')
/* only one line, no \n terminator */
prepend = "\n0\n";
- } else if (p[1] == '\0') {
+ else if (p[1] == '\0') {
/* only one line, with \n terminator */
++p;
prepend = "0\n";