fugging strlen :DDDD
This commit is contained in:
parent
5f840b01da
commit
0658b5f237
2 changed files with 11 additions and 2 deletions
|
@ -49,7 +49,7 @@ main(int argc, char **argv)
|
|||
long_options,&option_index)) != -1) {
|
||||
switch(c) {
|
||||
case 's':
|
||||
strncpy(server,optarg,256);
|
||||
server = optarg;
|
||||
break;
|
||||
case 'h':
|
||||
print_help();
|
||||
|
@ -165,3 +165,12 @@ store_link(const char *path, const char *buf)
|
|||
fputc('\n',fp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
print_help()
|
||||
{
|
||||
printf("--server <server>: specifies the lainsafe server\n%s\n%s",
|
||||
"--tor: uses tor",
|
||||
"--help: print this message\n");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* clainsafecli options */
|
||||
|
||||
/* Default server you'll upload files to */
|
||||
char server[256] = "https://lainsafe.kalli.st";
|
||||
char *server = "https://lainsafe.kalli.st";
|
||||
|
||||
/* proxy urls, socks and http. in that order, by default they're
|
||||
* configured to be used for tor and i2p, but if you have another
|
||||
|
|
Loading…
Add table
Reference in a new issue