]> git.ipfire.org Git - thirdparty/libvirt.git/commit
vsh: Write out history on "quit" or "exit" in interactive mode
authorJohn Ferlan <jferlan@redhat.com>
Wed, 28 Sep 2016 19:01:55 +0000 (15:01 -0400)
committerJohn Ferlan <jferlan@redhat.com>
Thu, 29 Sep 2016 11:00:28 +0000 (07:00 -0400)
commitbcfa2f427d53264830ff5fa5d029b6897773702d
treea9448dd67ed4d7de960b641e6ac2490b4a2e4f8a
parent13aa79842cfa6c20c3b768c2ccd283bb5ef9e071
vsh: Write out history on "quit" or "exit" in interactive mode

https://bugzilla.redhat.com/show_bug.cgi?id=1379895

Introduced by commit id '834c5720'.

During the code motion and creation of vsh.c, the function 'vshDeinit()'
in the (new) vsh.c was altered from whence it came in virsh.c such that
calling 'vshReadlineDeinit(ctl)' was conditional on "ctl->imode".

This causes a problem for the interactive running if the "quit" and "exit"
commands are used because 'cmdQuit' will clear ctl->imode, thus when the
interactive loop in main() of virsh.c exits because ctl->mode is clear and
virshDeinit is called which calls vshDeinit, the history file is now not
written. Conversely, if one had exited the interactive loop via pressing
<ctrl>D the file would be created because loop control is broken on EOF
and ctl->imode is not set to false.

This patch will remove the conditional call to vshReadlineDeinit and
restore the former behaviour.
tools/vsh.c