aboutsummaryrefslogtreecommitdiff
path: root/src/lib/os_installation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/os_installation.c')
-rw-r--r--src/lib/os_installation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/os_installation.c b/src/lib/os_installation.c
index 279a8b82..f0a55f12 100644
--- a/src/lib/os_installation.c
+++ b/src/lib/os_installation.c
@@ -350,13 +350,13 @@ get_path_from_PATH ()
350 350
351 351
352/** 352/**
353 * Try to obtain the installation path using the "GNUNET_PREFIX" environment 353 * Try to obtain the installation path using the "GNUNET_GTK_PREFIX" environment
354 * variable. 354 * variable.
355 * 355 *
356 * @return NULL on error (environment variable not set) 356 * @return NULL on error (environment variable not set)
357 */ 357 */
358static char * 358static char *
359get_path_from_GNUNET_PREFIX () 359get_path_from_GNUNET_GTK_PREFIX ()
360{ 360{
361 const char *p; 361 const char *p;
362 362
@@ -378,7 +378,7 @@ os_get_gnunet_path ()
378{ 378{
379 char *ret; 379 char *ret;
380 380
381 ret = get_path_from_GNUNET_PREFIX (); 381 ret = get_path_from_GNUNET_GTK_PREFIX ();
382 if (ret != NULL) 382 if (ret != NULL)
383 return ret; 383 return ret;
384#if LINUX 384#if LINUX