diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-05 23:26:24 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-22 22:29:57 -0800 |
commit | ad85d2eb4e44f21e8e38aa3bdec4acb139989218 (patch) | |
tree | 07105592406f620c68e53cdb2ff52d0e4177b847 /process.c | |
parent | e371fa337f256306fb93eaca7fbbe8ee5283dcfa (diff) | |
download | iceauth-ad85d2eb4e44f21e8e38aa3bdec4acb139989218.tar.gz |
Fix "noexistent" typo in error message
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1060,7 +1060,7 @@ static int do_help ( if (n == 0) { prefix (inputfilename, lineno); /* already know that cmd is set in this case */ - fprintf (stderr, "no help for noexistent command \"%s\"\n", cmd); + fprintf (stderr, "no help for nonexistent command \"%s\"\n", cmd); } return 0; |