1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-23 01:22:37 +03:00

Fixed a few typos

This commit is contained in:
Dan Fandrich
2014-02-18 23:46:25 +01:00
parent adc5db29e3
commit c00efa5f93
8 changed files with 17 additions and 17 deletions

View File

@@ -133,7 +133,7 @@ shell_quotearg(const char *path, unsigned char *buf,
* Processing States:
* UQSTRING: unquoted string: ... -- used for quoting exclamation
* marks. This is the initial state
* SQSTRING: single-qouted-string: '... -- any character may follow
* SQSTRING: single-quoted-string: '... -- any character may follow
* QSTRING: quoted string: "... -- only apostrophes may follow
*/
enum { UQSTRING, SQSTRING, QSTRING } state = UQSTRING;