diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -291,6 +291,7 @@ int main(int argc, char **argv) else { free(device); device = strdup(optarg); + fprintf(stderr, "uhttpd: bind device %s\n", device); } break; @@ -309,6 +310,7 @@ int main(int argc, char **argv) #endif case 'p': optarg = strdup(optarg); + fprintf(stderr, "uhttpd: listen device %s\n", device); bound += add_listener_arg(optarg, device, (ch == 's')); break; |