1. 15 3月, 2008 1 次提交
  2. 14 3月, 2008 1 次提交
    • D
      typo · 62b4c870
      Daniel Veillard 提交于
      * src/bridge.c: fix a typo in a comment
      Daniel
      62b4c870
  3. 13 3月, 2008 1 次提交
  4. 28 2月, 2008 1 次提交
  5. 06 2月, 2008 1 次提交
  6. 12 12月, 2007 1 次提交
    • J
      Use a variable name as sizeof argument, not a type name. · 49230350
      Jim Meyering 提交于
      Given code like: T *var = calloc (n, sizeof (T));
      Convert to this: T *var = calloc (n, sizeof (*var));
      This first-cut change adjusts all malloc, calloc, and
      realloc statements.
      
      The only binary differences are in remote_internal.c
      (due to the bug fix) and in xmlrpc.c (due to factorization).
      
      * python/libvir.c: As above.
      * qemud/event.c: Likewise.
      * qemud/mdns.c: Likewise.
      * qemud/qemud.c: Likewise.
      * qemud/remote.c: Likewise.
      * src/bridge.c: Likewise.
      * src/buf.c: Likewise.
      * src/conf.c: Likewise.
      * src/hash.c: Likewise.
      * src/iptables.c: Likewise.
      * src/openvz_conf.c: Likewise.
      * src/qemu_conf.c: Likewise.
      * src/qemu_driver.c: Likewise.
      * src/test.c: Likewise.
      * src/xen_internal.c: Likewise.
      * src/xen_unified.c: Likewise.
      * src/xm_internal.c: Likewise.
      * src/xml.c: Likewise.
      * tests/qemuxml2argvtest.c: Likewise.
      * src/xmlrpc.c (xmlRpcValuePtr): Likewise, and minor factorization.
      * src/remote_internal.c (remoteAuthMakeCredentials): Use the right
      type when allocating space for an array of cred _pointers_.
      49230350
  7. 26 11月, 2007 1 次提交
  8. 21 11月, 2007 1 次提交
  9. 21 9月, 2007 1 次提交
  10. 07 8月, 2007 1 次提交
  11. 29 6月, 2007 1 次提交
  12. 27 6月, 2007 2 次提交
  13. 14 3月, 2007 1 次提交
  14. 20 2月, 2007 1 次提交
  15. 19 2月, 2007 1 次提交
  16. 17 2月, 2007 1 次提交
  17. 15 2月, 2007 1 次提交
    • M
      Tue Feb 14 16:02:23 IST 2007 Mark McLoughlin <markmc@redhat.com> · 4e6c38e1
      Mark McLoughlin 提交于
              * configure.in: add --disable-bridge-params, check
              for libsysfs and various kernel headers
      
              * bridge.[ch]: add code for managing bridges
      
              * qemud/Makefile.am: add bridge.[ch] and link against
              libsysfs if enabled.
      
              * qemud/conf.c: add support for bridge config.
      
              * qemud/internal.h: add various bridging bits
      
              * qemud/qemud.c: implement qemudStartNetworkDaemon()
              and qemudShutdownNetworkDaemon().
      4e6c38e1