summaryrefslogtreecommitdiff
path: root/tshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-03-22 00:42:33 +0000
committerGuy Harris <guy@alum.mit.edu>2009-03-22 00:42:33 +0000
commit7c6e2155cc01e650987e3adc5529d16c27ad5816 (patch)
tree482edf3d6252f8d9a398a01dc3838029585feb4f /tshark.c
parent724cae360eb251188c35adb420cdf1311fe426f4 (diff)
downloadwireshark-7c6e2155cc01e650987e3adc5529d16c27ad5816.tar.gz
Attempt to use dladdr() to get the pathname of the executable image if
it's available and works. svn path=/trunk/; revision=27812
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tshark.c b/tshark.c
index 9ce3f57582..688b0a9836 100644
--- a/tshark.c
+++ b/tshark.c
@@ -773,7 +773,8 @@ main(int argc, char *argv[])
/*
* Attempt to get the pathname of the executable file.
*/
- init_progfile_dir_error = init_progfile_dir(argv[0]);
+ init_progfile_dir_error = init_progfile_dir(argv[0],
+ (const void *)main);
if (init_progfile_dir_error != NULL) {
fprintf(stderr, "tshark: Can't get pathname of tshark program: %s.\n",
init_progfile_dir_error);