mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 18:41:20 +00:00
Switched URL to @SAVANNAH for more mirrors. Added PKG_BUILD_PARALLEL for faster compilation. Added PKG_LICENSE info. Minor reorganization for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
12 lines
364 B
Diff
12 lines
364 B
Diff
--- a/src/webdav.c
|
|
+++ b/src/webdav.c
|
|
@@ -2037,7 +2037,7 @@ ssl_verify(void *userdata, int failures, const ne_ssl_certificate *cert)
|
|
len = getline(&s, &n, stdin);
|
|
if (len < 0)
|
|
abort();
|
|
- if (rpmatch(s) > 0)
|
|
+ if ((s[0]=='y' || s[0]=='Y') > 0)
|
|
ret = 0;
|
|
free(s);
|
|
}
|