diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-04-03 13:09:10 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-04-03 13:09:10 +0000 |
commit | ac1453a896b113f0a7ce8f0e1e60d6f127c417b0 (patch) | |
tree | 0a8e1f0be7c634c7106d02042770e43f390ee2d7 /package/uhttpd/src | |
parent | 4d520b5eaea34cb0565541c971d5d1a9adea1deb (diff) |
[package] uhttpd:
- cope with options instead of lists in uci config
- fix compilation without tls (#7050)
- bump to rev 7
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20668 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uhttpd/src')
-rw-r--r-- | package/uhttpd/src/uhttpd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/uhttpd/src/uhttpd.c b/package/uhttpd/src/uhttpd.c index c6a8b6c272..da3779413e 100644 --- a/package/uhttpd/src/uhttpd.c +++ b/package/uhttpd/src/uhttpd.c @@ -524,6 +524,7 @@ int main (int argc, char **argv) port = optarg; } +#ifdef HAVE_TLS if( opt == 's' ) { if( !conf.tls ) @@ -537,6 +538,7 @@ int main (int argc, char **argv) tls = 1; } +#endif /* bind sockets */ bound += uh_socket_bind( |