jtavares has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-remsim/+/30136 )
Change subject: bankd: add missing -p short form option ......................................................................
bankd: add missing -p short form option
Change-Id: I44969c70612a25184fc51b695c7dbf97865fb116 --- M src/bankd/bankd_main.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-remsim refs/changes/36/30136/1
diff --git a/src/bankd/bankd_main.c b/src/bankd/bankd_main.c index b3b8dff..e184aba 100644 --- a/src/bankd/bankd_main.c +++ b/src/bankd/bankd_main.c @@ -319,7 +319,7 @@ { 0, 0, 0, 0 } };
- c = getopt_long(argc, argv, "hVd:i:o:b:n:N:I:P:s", long_options, &option_index); + c = getopt_long(argc, argv, "hVd:i:p:o:b:n:N:I:P:s", long_options, &option_index); if (c == -1) break;
@@ -808,7 +808,7 @@ break; }
- return rc; + return rc; }
static int wait_for_fd_or_timeout(int fd, unsigned int timeout_secs)