<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;"><DIV>Please can anybody tell me why am I getting this error in foll code? <BR>Your help is appreciated <BR><BR><BR>Code: <BR></DIV>
<DIV>DBusConnection *connection;<BR>DBusError error;<BR>LibHalContext *ctx;<BR>dbus_error_init(&amp;error);<BR>if((connection = dbus_bus_get(DBUS_BUS_SYSTEM,&amp;error)) == NULL)<BR>{<BR>printf("Error %s\n",error.message);<BR>return 1;<BR>}<BR>if ( dbus_error_is_set(&amp;error) )<BR>{<BR>printf("Unable to connect to DBus: %s\n",error.message);<BR>return 1;<BR>}<BR>if((ctx = libhal_ctx_new())==NULL)<BR>{<BR>printf("Error %s\n",error.message);<BR>return 1;<BR>}<BR>if ( !libhal_ctx_set_dbus_connection(ctx, connection) )<BR>{<BR>printf("Error %s\n",error.message);<BR>return 1;<BR>}<BR>if ( !libhal_ctx_init(ctx, &amp;error) )<BR>{<BR>printf("Hal context initializing failure %s\n",error.message);<BR>return 1;<BR>}<!-- / message --></DIV></td></tr></table><br>