From: Karl Fleischmann Date: Tue, 14 Jun 2022 08:28:54 +0000 (+0200) Subject: m4: gmtime_max.m4 - Replace tabs with spaces X-Git-Tag: 2.4.0~3844 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07ce6254287efecbde2291a7d7d11710c25893dd;p=thirdparty%2Fdovecot%2Fcore.git m4: gmtime_max.m4 - Replace tabs with spaces --- diff --git a/m4/gmtime_max.m4 b/m4/gmtime_max.m4 index 7f73faf8f9..da272d0c58 100644 --- a/m4/gmtime_max.m4 +++ b/m4/gmtime_max.m4 @@ -9,22 +9,22 @@ AC_DEFUN([DOVECOT_GMTIME_MAX], [ int bits; for (bits = 1; bits < sizeof(time_t)*8; bits++) { - time_t t = ((time_t)1 << bits) - 1; - if (gmtime(&t) == NULL) { - bits--; - break; - } + time_t t = ((time_t)1 << bits) - 1; + if (gmtime(&t) == NULL) { + bits--; + break; + } } if (bits > 40) { - /* Solaris 9 breaks after 55 bits. Perhaps other systems break earlier. - Let's just do the same as Cyrus folks and limit it to 40 bits. */ - bits = 40; + /* Solaris 9 breaks after 55 bits. Perhaps other systems break earlier. + Let's just do the same as Cyrus folks and limit it to 40 bits. */ + bits = 40; } f = fopen("conftest.temp", "w"); if (f == NULL) { - perror("fopen()"); - return 1; + perror("fopen()"); + return 1; } fprintf(f, "%d", bits); fclose(f);