Mon Feb 2 15:56:45 CET 2008 Jim Meyering <meyering@redhat.com>
+ Mark a string for translation.
+ * src/virsh.c: Add a "%s" and wrap with _(...).
+
Enable the sc_unmarked_diagnostics test and correct all violations
involving the "error" function.
* Makefile.cfg (local-checks-to-skip): Remove from skip list.
/*
* virsh.c: a Xen shell used to exercise the libvirt API
*
- * Copyright (C) 2005, 2007 Red Hat, Inc.
+ * Copyright (C) 2005, 2007-2008 Red Hat, Inc.
*
* See COPYING.LIB for the License of this software
*
#endif /* !USE_READLINE */
/*
- * Deinitliaze virsh
+ * Deinitialize virsh
*/
static int
vshDeinit(vshControl * ctl)
if (ctl->conn) {
if (virConnectClose(ctl->conn) != 0) {
ctl->conn = NULL; /* prevent recursive call from vshError() */
- vshError(ctl, TRUE,
- "failed to disconnect from the hypervisor");
+ vshError(ctl, TRUE, "%s",
+ _("failed to disconnect from the hypervisor"));
}
}
virResetLastError();