diff options
author | Eric Blake <eblake@redhat.com> | 2011-12-03 17:06:07 -0700 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2011-12-03 17:11:56 -0700 |
commit | 3a9ce767f1881c245ae5d8839ed1a30602c6f284 (patch) | |
tree | bdfed25336c377841474cdc1f1f448bef99b17a6 /src/rpc/virnetclient.c | |
parent | build: require more tools from maintainers (diff) | |
download | libvirt-3a9ce767f1881c245ae5d8839ed1a30602c6f284.tar.gz libvirt-3a9ce767f1881c245ae5d8839ed1a30602c6f284.tar.bz2 libvirt-3a9ce767f1881c245ae5d8839ed1a30602c6f284.zip |
maint: fix improper use of 'an'
https://bugzilla.redhat.com/show_bug.cgi?id=648855 mentioned a
misuse of 'an' where 'a' is proper; that has since been fixed,
but a search found other problems (some were a spelling error for
'and', while most were fixed by 'a').
* daemon/stream.c: Fix grammar.
* src/conf/domain_conf.c: Likewise.
* src/conf/domain_event.c: Likewise.
* src/esx/esx_driver.c: Likewise.
* src/esx/esx_vi.c: Likewise.
* src/rpc/virnetclient.c: Likewise.
* src/rpc/virnetserverprogram.c: Likewise.
* src/storage/storage_backend_fs.c: Likewise.
* src/util/conf.c: Likewise.
* src/util/dnsmasq.c: Likewise.
* src/util/iptables.c: Likewise.
* src/xen/xen_hypervisor.c: Likewise.
* src/xen/xend_internal.c: Likewise.
* src/xen/xs_internal.c: Likewise.
* tools/virsh.c: Likewise.
Diffstat (limited to 'src/rpc/virnetclient.c')
-rw-r--r-- | src/rpc/virnetclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/virnetclient.c b/src/rpc/virnetclient.c index ec06f45a7..7f9a33222 100644 --- a/src/rpc/virnetclient.c +++ b/src/rpc/virnetclient.c @@ -1701,7 +1701,7 @@ static int virNetClientSendInternal(virNetClientPtr client, if (expectReply && nonBlock) { virNetError(VIR_ERR_INTERNAL_ERROR, "%s", - _("Attempt to send an non-blocking message with a synchronous reply")); + _("Attempt to send a non-blocking message with a synchronous reply")); return -1; } |