aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-05-15 19:57:12 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-05-15 19:57:12 +0200
commitdd89a55a9b54e29da43d6adea00fc2c42e3e7ebd (patch)
tree3b2d33e9461655c0858f826161d4a85018d90f6b /conf.c
parent764b0aba8754ab488ccc84f5cba0f9bd0c454707 (diff)
Fixed various memory leaks/other possible problems after code review.
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index 0bd9cbc8..7538825d 100644
--- a/conf.c
+++ b/conf.c
@@ -94,7 +94,7 @@ conf_t *conf_load( int argc, char *argv[] )
}
conf->port = i;
}
- else if( opt == 'p' )
+ else if( opt == 'P' )
{
g_free( conf->pidfile );
conf->pidfile = g_strdup( optarg );