aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-12-16 21:02:11 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-12-16 21:02:11 +0000
commita3d0e32a0ba131bc44da416a60910462cc984b07 (patch)
tree70cf69658c21107080802ec3da6d62798a6c69a5 /plugins
parent6ab609c044e8b6992cfe7d3336186113a3c7a1db (diff)
using G_DIR_SEPARATOR_S instead of hardcoded slash
(not suitable on win32 platforms) svn path=/trunk/; revision=9299
Diffstat (limited to 'plugins')
-rw-r--r--plugins/asn1/packet-asn1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index c19a357597..c29d5a557f 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2003 by Matthijs Melchior <matthijs.melchior@xs4all.nl>
*
- * $Id: packet-asn1.c,v 1.10 2003/11/09 22:15:29 guy Exp $
+ * $Id: packet-asn1.c,v 1.11 2003/12/16 21:02:11 ulfl Exp $
*
* A plugin for:
*
@@ -137,7 +137,7 @@ static guint udp_port_asn1 = UDP_PORT_ASN1;
static gboolean asn1_desegment = TRUE;
static char *asn1_filename = 0;
static char *default_asn1_filename = 0;
-#define ASN1FILE "asn1/default.tt"
+#define ASN1FILE "asn1" G_DIR_SEPARATOR_S "default.tt"
static char *current_asn1 = 0;
static char *asn1_pduname = 0;
static char *current_pduname = 0;