diff --git a/src/sbbs3/ftpsrvr.h b/src/sbbs3/ftpsrvr.h
index 4d897050e6463c5ff78ce8caf8628934baddc996..7b018d234e09e162b6d0a3bb4dc2815f355e289e 100644
--- a/src/sbbs3/ftpsrvr.h
+++ b/src/sbbs3/ftpsrvr.h
@@ -130,7 +130,7 @@ static ini_bitdesc_t ftp_options[] = {
 	{ FTP_OPT_LOCAL_TIMEZONE		,"LOCAL_TIMEZONE"		},
 	{ FTP_OPT_MUTE					,"MUTE"					},
 	/* terminator */										
-	{ -1							,NULL					}
+	{ 0 							,NULL					}
 };
 
 #ifdef DLLEXPORT
diff --git a/src/sbbs3/mailsrvr.h b/src/sbbs3/mailsrvr.h
index 9dd89c44f7a989dfe0b53933ca2dea40fcaa428a..1bf85a66692423fde9aaf4af62c30148240922c2 100644
--- a/src/sbbs3/mailsrvr.h
+++ b/src/sbbs3/mailsrvr.h
@@ -171,7 +171,7 @@ static ini_bitdesc_t mail_options[] = {
 	{ MAIL_OPT_LOCAL_TIMEZONE		,"LOCAL_TIMEZONE"		},
 	{ MAIL_OPT_MUTE					,"MUTE"					},
 	/* terminator */
-	{ -1							,NULL					}
+	{ 0 							,NULL					}
 };
 
 #ifdef DLLEXPORT
diff --git a/src/sbbs3/services.h b/src/sbbs3/services.h
index 78cae7c078b1469e2efe8712d463fe4df01073b6..88d7bb07dec94076cce643dcb94fdfa99a717fc0 100644
--- a/src/sbbs3/services.h
+++ b/src/sbbs3/services.h
@@ -109,7 +109,7 @@ static ini_bitdesc_t service_options[] = {
 	{ SERVICE_OPT_NATIVE			,"NATIVE"				},
 	{ SERVICE_OPT_FULL_ACCEPT		,"FULL_ACCEPT"			},
 	/* terminator */				
-	{ -1							,NULL					}
+	{ 0 							,NULL					}
 };
 
 #ifdef __cplusplus
diff --git a/src/sbbs3/startup.h b/src/sbbs3/startup.h
index da47ac7ad87646f1490281fe2a36f8420d2527ce..1ee6720e94a70adfbb84a233b0313ee9997da2db 100644
--- a/src/sbbs3/startup.h
+++ b/src/sbbs3/startup.h
@@ -179,7 +179,7 @@ static ini_bitdesc_t bbs_options[] = {
 	{ BBS_OPT_LOCAL_TIMEZONE		,"LOCAL_TIMEZONE"		},
 	{ BBS_OPT_MUTE					,"MUTE"					},
 	/* terminator */										
-	{ -1							,NULL					}
+	{ 0								,NULL					}
 };
 
 static ini_bitdesc_t log_mask_bits[] = {
@@ -192,7 +192,7 @@ static ini_bitdesc_t log_mask_bits[] = {
 	{ (1<<LOG_INFO)					,"INFO"					},
 	{ (1<<LOG_DEBUG)				,"DEBUG"				},
 	/* the Gubinator */				
-	{ -1							,NULL					}
+	{ 0								,NULL					}
 };
 
 #ifdef __cplusplus
diff --git a/src/sbbs3/websrvr.h b/src/sbbs3/websrvr.h
index ec652c807d25ad5587ad6bedb67486ad5583853c..f5d1b59c0438969ce61d0b6e3d27f5fb0163c2ea 100644
--- a/src/sbbs3/websrvr.h
+++ b/src/sbbs3/websrvr.h
@@ -126,7 +126,7 @@ static ini_bitdesc_t web_options[] = {
 	{ BBS_OPT_MUTE					,"MUTE"					},
 
 	/* terminator */										
-	{ -1							,NULL					}
+	{ 0								,NULL					}
 };
 
 #define WEB_DEFAULT_ROOT_DIR		"../html"