5d98a43e7e
- update to 2.26 (bnc#894285) Ignore ECONNABORTED on accept(). Correctly implemented the config-file option change from "nosymlink" to "nosymlinkcheck", which was supposedly done in version 2.24. Removed mailto: link from default index page. Allow CGIs to provide both Location and Status headers. Better logic for figuring out CGI SERVER_NAME environment variable. Updated for clang, and general cleanup. - dropped thttpd-2.25b-getline.patch (upstream) - added thttpd-crypt_is_in_crypt.h.patch OBS-URL: https://build.opensuse.org/request/show/247376 OBS-URL: https://build.opensuse.org/package/show/server:http/thttpd?expand=0&rev=24
25 lines
759 B
Diff
25 lines
759 B
Diff
Index: thttpd-2.26/extras/htpasswd.c
|
|
===================================================================
|
|
--- thttpd-2.26.orig/extras/htpasswd.c 2014-09-03 09:54:25.155386527 +0200
|
|
+++ thttpd-2.26/extras/htpasswd.c 2014-09-03 10:32:19.736082368 +0200
|
|
@@ -15,6 +15,7 @@
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
+#include <crypt.h>
|
|
|
|
#define LF 10
|
|
#define CR 13
|
|
Index: thttpd-2.26/libhttpd.c
|
|
===================================================================
|
|
--- thttpd-2.26.orig/libhttpd.c 2014-09-03 09:54:25.155386527 +0200
|
|
+++ thttpd-2.26/libhttpd.c 2014-09-03 10:33:13.913694495 +0200
|
|
@@ -53,6 +53,7 @@
|
|
#include <string.h>
|
|
#include <syslog.h>
|
|
#include <unistd.h>
|
|
+#include <crypt.h>
|
|
#include <stdarg.h>
|
|
|
|
#ifdef HAVE_OSRELDATE_H
|