summaryrefslogtreecommitdiff
path: root/sftp-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'sftp-common.c')
-rw-r--r--sftp-common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sftp-common.c b/sftp-common.c
index aed9b339a..3310eabab 100644
--- a/sftp-common.c
+++ b/sftp-common.c
@@ -24,7 +24,7 @@
24 */ 24 */
25 25
26#include "includes.h" 26#include "includes.h"
27RCSID("$OpenBSD: sftp-common.c,v 1.1 2001/02/04 11:11:54 djm Exp $"); 27RCSID("$OpenBSD: sftp-common.c,v 1.2 2001/02/06 23:50:10 markus Exp $");
28 28
29#include "buffer.h" 29#include "buffer.h"
30#include "bufaux.h" 30#include "bufaux.h"
@@ -121,13 +121,13 @@ fx2txt(int status)
121{ 121{
122 switch (status) { 122 switch (status) {
123 case SSH2_FX_OK: 123 case SSH2_FX_OK:
124 return("No Error"); 124 return("No error");
125 case SSH2_FX_EOF: 125 case SSH2_FX_EOF:
126 return("End of File"); 126 return("End of file");
127 case SSH2_FX_NO_SUCH_FILE: 127 case SSH2_FX_NO_SUCH_FILE:
128 return("No Such File"); 128 return("No such file or directory");
129 case SSH2_FX_PERMISSION_DENIED: 129 case SSH2_FX_PERMISSION_DENIED:
130 return("Permission Denied"); 130 return("Permission denied");
131 case SSH2_FX_FAILURE: 131 case SSH2_FX_FAILURE:
132 return("Failure"); 132 return("Failure");
133 case SSH2_FX_BAD_MESSAGE: 133 case SSH2_FX_BAD_MESSAGE: