diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/applets/applets.c b/applets/applets.c index 72a9d9f5e..ab0b09c8c 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -673,6 +673,10 @@ int main(int argc, char **argv) | |||
673 | s = strrchr(applet_name, '/'); | 673 | s = strrchr(applet_name, '/'); |
674 | if (s) | 674 | if (s) |
675 | applet_name = s + 1; | 675 | applet_name = s + 1; |
676 | #ifdef __MINGW32__ | ||
677 | else if ((s = strrchr(applet_name, '\\'))) | ||
678 | applet_name = s + 1; | ||
679 | #endif | ||
676 | 680 | ||
677 | parse_config_file(); /* ...maybe, if FEATURE_SUID_CONFIG */ | 681 | parse_config_file(); /* ...maybe, if FEATURE_SUID_CONFIG */ |
678 | 682 | ||