Deleted Added
full compact
7,14c7,8
< * This program is free software; you can redistribute it and/or modify
< * it under the terms of the GNU General Public License version 2 as
< * published by the Free Software Foundation.
< *
< * Alternatively, this software may be distributed under the terms of BSD
< * license.
< *
< * See README and COPYING for more details.
---
> * This software may be distributed under the terms of the BSD license.
> * See README for more details.
46c40
< iface->xml = wpabuf_alloc(3000);
---
> iface->xml = wpabuf_alloc(6000);
92c86,87
< wpabuf_printf(xml, "<property name=\"%s\" type=\"%s\" access=\"%s\"/>",
---
> wpabuf_printf(xml, "<property name=\"%s\" type=\"%s\" "
> "access=\"%s%s\"/>",
94,95c89,90
< (dsc->access == R ? "read" :
< (dsc->access == W ? "write" : "readwrite")));
---
> dsc->getter ? "read" : "",
> dsc->setter ? "write" : "");
165a161,166
> } else {
> wpa_printf(MSG_DEBUG, "dbus: Not enough room for "
> "add_interfaces inspect data: tailroom %u, "
> "add %u",
> (unsigned int) wpabuf_tailroom(xml),
> (unsigned int) wpabuf_len(iface->xml));
253c254
< xml = wpabuf_alloc(4000);
---
> xml = wpabuf_alloc(10000);