summaryrefslogtreecommitdiff
path: root/dftest.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 /dftest.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 'dftest.c')
-rw-r--r--dftest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dftest.c b/dftest.c
index 84b198cbde..7fbadd8bc7 100644
--- a/dftest.c
+++ b/dftest.c
@@ -75,7 +75,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, "dftest: Can't get pathname of dftest program: %s.\n",
init_progfile_dir_error);