Skip to content

Commit f24e3eb

Browse files
committed
add: [pibs] store target directory for storing results
1 parent 2e4d1ee commit f24e3eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bin/pibs-BGP-Ranking.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ int main(int argc, char* argv[])
7777
strncpy(pibs->filename, optarg, FILENAME_MAX);
7878
pibs->filename[FILENAME_MAX-1] = '\0';
7979
break;
80+
case 'd':
81+
strncpy((char*)&(pibs->outputfile), optarg, FILENAME_MAX);
82+
pibs->outputfile[FILENAME_MAX-1] = '\0';
83+
break;
8084
}
8185
}
8286

0 commit comments

Comments
 (0)