diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-05-05 00:19:09 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-05-05 08:06:35 +0000 |
commit | 15cfc41e9441c648caf10483520ba3503f2824a0 (patch) | |
tree | 628cd951778ef56703662cb629e0a9efe25e7dbd /tfshark.c | |
parent | 41445d0e97ef37786ec7443141641a78fcfd6b8f (diff) | |
download | wireshark-15cfc41e9441c648caf10483520ba3503f2824a0.tar.gz wireshark-15cfc41e9441c648caf10483520ba3503f2824a0.tar.bz2 wireshark-15cfc41e9441c648caf10483520ba3503f2824a0.zip |
Don't use dladdr() to get a pathname for the current executable().
Change-Id: I24ad11a659c2cb936f873339dc2b36ac9944280a
Reviewed-on: https://code.wireshark.org/review/27359
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'tfshark.c')
-rw-r--r-- | tfshark.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -378,7 +378,7 @@ main(int argc, char *argv[]) * Attempt to get the pathname of the directory containing the * executable file. */ - init_progfile_dir_error = init_progfile_dir(argv[0], main); + init_progfile_dir_error = init_progfile_dir(argv[0]); if (init_progfile_dir_error != NULL) { fprintf(stderr, "tfshark: Can't get pathname of directory containing the tfshark program: %s.\n", |