]> git.ipfire.org Git - thirdparty/git.git/blobdiff - imap-send.c
config: don't include config.h by default
[thirdparty/git.git] / imap-send.c
index 5c7e27a89459a9a63018cc469262c82891c6f7b7..59e9b12d294da13fcfc2955c61f50709de1ae84f 100644 (file)
@@ -23,6 +23,7 @@
  */
 
 #include "cache.h"
+#include "config.h"
 #include "credential.h"
 #include "exec_cmd.h"
 #include "run-command.h"
@@ -964,7 +965,7 @@ static struct imap_store *imap_open_store(struct imap_server_conf *srvc, char *f
                int gai;
                char portstr[6];
 
-               snprintf(portstr, sizeof(portstr), "%d", srvc->port);
+               xsnprintf(portstr, sizeof(portstr), "%d", srvc->port);
 
                memset(&hints, 0, sizeof(hints));
                hints.ai_socktype = SOCK_STREAM;