diff --git a/options.h b/options.h
index 9be79a9ec52e7a3caa06807c314b9399c65adea7..2f53831f7f2d03d7f11bd3796c82bd46cf34e787 100644
--- a/options.h
+++ b/options.h
@@ -11,7 +11,7 @@
  ******************************************************************/
 
 #ifndef DROPBEAR_PORT
-#define DROPBEAR_PORT 22
+#define DROPBEAR_DEFPORT "22"
 #endif
 
 /* Default hostkey paths - these can be specified on the command line */
diff --git a/svr-runopts.c b/svr-runopts.c
index e198b00ce014586c33c96fe360d32f3a2d35f295..dfd5daf388fa9ddcb6ab069014e0a5fddc02b353 100644
--- a/svr-runopts.c
+++ b/svr-runopts.c
@@ -70,7 +70,7 @@ static void printhelp(const char * progname) {
 					"-k		Disable remote port forwarding\n"
 #endif
 					"-p port	Listen on specified tcp port, up to %d can be specified\n"
-					"		(default %d if none specified)\n"
+					"		(default %s if none specified)\n"
 #ifdef INETD_MODE
 					"-i		Start for inetd\n"
 #endif