summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/scope.c b/scope.c
index f2716d2..2fec497 100644
--- a/scope.c
+++ b/scope.c
@@ -131,11 +131,11 @@ static CMDResult CMDQuit (int argc, char **argv);
static CMDResult CMDHelp (int argc, char **argv);
typedef struct _CMDFunc {
- char *name;
- char *alias;
+ const char *name;
+ const char *alias;
CMDResult (*func)(int argc, char **argv);
- char *usage;
- char *help;
+ const char *usage;
+ const char *help;
} CMDFuncRec;
typedef const CMDFuncRec *CMDFuncPtr;
@@ -1050,7 +1050,7 @@ ServerHalf (
return(FDinfo[fd].pair);
}
-char *
+const char *
ClientName (
FD fd)
{