Skip to content

Commit

Permalink
httpd: make httpd_out static
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov committed Oct 4, 2024
1 parent 2512c35 commit 92d2b85
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion imap/httpd.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ int httpd_userisadmin = 0;
int httpd_userisproxyadmin = 0;
int httpd_userisanonymous = 1;
const char *httpd_localip = NULL, *httpd_remoteip = NULL;
struct protstream *httpd_out = NULL;
static struct protstream *httpd_out;
struct protstream *httpd_in = NULL;
strarray_t *httpd_log_headers = NULL;
char *httpd_altsvc = NULL;
Expand Down
1 change: 0 additions & 1 deletion imap/httpd.h
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,6 @@ extern struct namespace_t namespace_cgi;
extern struct buf serverinfo;
extern ptrarray_t backend_cached;
extern struct protstream *httpd_in;
extern struct protstream *httpd_out;
extern int https;
extern sasl_conn_t *httpd_saslconn;
extern int httpd_timeout;
Expand Down

0 comments on commit 92d2b85

Please sign in to comment.