"kernel" => "busybox"
[oweals/busybox.git] / scripts / kconfig / confdata.c
index d38bbba93aaf797f9006aecfe6fc02c4222c5ee8..2930446544882b87092a4672e22a2fb6c9c9081c 100644 (file)
@@ -395,15 +395,24 @@ int conf_write(const char *name)
                char buf[sizeof("#define AUTOCONF_TIMESTAMP "
                                "\"YYYY-MM-DD HH:MM:SS some_timezone\"\n")];
                buf[0] = '\0';
-               if (use_timestamp)
-                       strftime(buf, sizeof(buf), "#define AUTOCONF_TIMESTAMP "
-                               "\"%Y-%m-%d %H:%M:%S %Z\"\n", localtime(&now));
+               if (use_timestamp) {
+                       size_t ret = \
+                               strftime(buf, sizeof(buf), "#define AUTOCONF_TIMESTAMP "
+                                       "\"%Y-%m-%d %H:%M:%S %Z\"\n", localtime(&now));
+                       /* if user has Factory timezone or some other odd install, the
+                        * %Z above will overflow the string leaving us with undefined
+                        * results ... so let's try again without the timezone.
+                        */
+                       if (ret == 0)
+                               strftime(buf, sizeof(buf), "#define AUTOCONF_TIMESTAMP "
+                                       "\"%Y-%m-%d %H:%M:%S\"\n", localtime(&now));
+               }
                fprintf(out_h, "/*\n"
                               " * Automatically generated C config: don't edit\n"
                               " * Linux kernel version: %s\n"
                               " */\n"
                               "%s"
-                              "#define AUTOCONF_INCLUDED\n",
+                              "\n",
                               sym_get_string_value(sym),
                               buf);
        }