summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Friis <peavey@inspircd.org>2010-04-05 21:41:06 +0200
committerDennis Friis <peavey@inspircd.org>2010-04-05 21:41:06 +0200
commit7db569ca938458bf60cda2321a38249eb666f43a (patch)
tree1943108dd0b38d75bd7f06eee5bc9922efb6532e
parente24ff3ffc6c3f3fc096b2efd8c5b60e28a562ffa (diff)
Fix typo in argument to valdebug spotted by daemonic.
-rw-r--r--make/template/inspircd2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/template/inspircd b/make/template/inspircd
index 2b01aad49..ed98a186b 100644
--- a/make/template/inspircd
+++ b/make/template/inspircd
@@ -189,7 +189,7 @@ sub dev_screendebug(@)
# If we are still alive here.. Try starting the IRCd..
print "Starting InspIRCd in `screen`, type `screen -r` when the ircd crashes to view the gdb output and get a backtrace.\n";
print "Once you're inside the screen session press ^C + d to re-detach from the session\n";
- exec qw(screen -m -d gdb), "--comand=$basepath/.gdbargs", '-args', "$binpath/$executable", qw(--nofork --debug --nolog), @_;
+ exec qw(screen -m -d gdb), "--command=$basepath/.gdbargs", '-args', "$binpath/$executable", qw(--nofork --debug --nolog), @_;
die "Failed to start screen: $!\n";
}