Skip to content

Commit d00efc7

Browse files
committed
CONOLE: remove wrongly merged lines
1 parent 57d875d commit d00efc7

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

console/ConsoleMain.cc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ extern int com_license(char*);
9494
extern int com_ln(char*);
9595
extern int com_ls(char*);
9696
extern int com_map(char*);
97-
extern int com_mdcopy(char*);
9897
extern int com_member(char*);
9998
extern int com_mkdir(char*);
10099
extern int com_motd(char*);
@@ -139,7 +138,6 @@ extern int com_accounting(char*);
139138
extern int com_quota(char*);
140139
extern int com_daemon(char*);
141140
extern int com_proto_sched(char*);
142-
extern int com_zip(char*);
143141

144142
//------------------------------------------------------------------------------
145143
// Command mapping array
@@ -187,7 +185,6 @@ COMMAND commands[] = {
187185
{ (char*) "ls", com_ls, (char*) "List a directory"},
188186
{ (char*) "ln", com_ln, (char*) "Create a symbolic link"},
189187
{ (char*) "map", com_map, (char*) "Path mapping interface"},
190-
{ (char*) "mdcopy", com_mdcopy, (char*) "Meta-data copy toole"},
191188
{ (char*) "member", com_member, (char*) "Check Egroup membership"},
192189
{ (char*) "mkdir", com_mkdir, (char*) "Create a directory"},
193190
{ (char*) "motd", com_motd, (char*) "Message of the day"},
@@ -226,7 +223,6 @@ COMMAND commands[] = {
226223
{ (char*) "vid", com_vid, (char*) "Virtual ID System Configuration"},
227224
{ (char*) "whoami", com_whoami, (char*) "Determine how we are mapped on server side"},
228225
{ (char*) "who", com_who, (char*) "Statistics about connected users"},
229-
{ (char*) "zip", com_zip, (char*) "Remote Zip Tools"},
230226
{ (char*) "?", com_help, (char*) "Synonym for 'help'"},
231227
{ (char*) ".q", com_quit, (char*) "Exit from EOS console"},
232228
{ (char*) 0, (int (*)(char*))0, (char*) 0}
@@ -1568,8 +1564,7 @@ bool RequiresMgm(const std::string& name, const std::string& args)
15681564
(name == "exit") || (name == "help") || (name == "json") ||
15691565
(name == "pwd") || (name == "quit") || (name == "role") ||
15701566
(name == "silent") || (name == "timing") || (name == "?") ||
1571-
(name == ".q") || (name == "daemon") || (name == "scitoken") ||
1572-
(name == "mdcopy"))
1567+
(name == ".q") || (name == "daemon") || (name == "scitoken"))
15731568
{
15741569
return false;
15751570
}

0 commit comments

Comments
 (0)