diff options
Diffstat (limited to '')
-rw-r--r-- | chat.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/chat.c b/chat.c index bb05d7d..8c425d4 100644 --- a/chat.c +++ b/chat.c @@ -248,7 +248,6 @@ int main(int argc, char *argv[]) { { .val = 'K', .name = "kiosk", no_argument }, { .val = 'N', .name = "notify", required_argument }, { .val = 'O', .name = "open", required_argument }, - { .val = 'P', .name = "prefix", no_argument }, { .val = 'R', .name = "restrict", no_argument }, { .val = 'S', .name = "bind", required_argument }, { .val = 'T', .name = "timestamp", optional_argument }, @@ -290,7 +289,6 @@ int main(int argc, char *argv[]) { break; case 'K': self.kiosk = true; break; case 'N': utilPush(&uiNotifyUtil, optarg); break; case 'O': utilPush(&urlOpenUtil, optarg); - break; case 'P': self.showPrefix = true; break; case 'R': self.restricted = true; break; case 'S': bind = optarg; break; case 'T': { |