From 1944bd58721920cbd6235c03ff72da1c346e5423 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Fri, 6 Jul 2012 09:32:39 +0200 Subject: [PATCH] Minor fix of MCC, MNC options --- src/pcu_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pcu_main.cpp b/src/pcu_main.cpp index 2a5f2c7d..ea507e5b 100644 --- a/src/pcu_main.cpp +++ b/src/pcu_main.cpp @@ -48,8 +48,8 @@ static void handle_options(int argc, char **argv) int option_idx = 0, c; static const struct option long_options[] = { { "help", 0, 0, 'h' }, - { "mcc", 0, 0, 'm' }, - { "mnc", 0, 0, 'n' }, + { "mcc", 1, 0, 'm' }, + { "mnc", 1, 0, 'n' }, { 0, 0, 0, 0 } };