diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp
index a827452abe8dacad034f35a72a2b2f233b723ed8..9f6f7f9ae77051e7ce0a0e851e536fb605a0cc60 100755
--- a/channels/h323/ast_h323.cpp
+++ b/channels/h323/ast_h323.cpp
@@ -205,9 +205,9 @@ int MyH323EndPoint::MakeCall(const PString & dest, PString & token,
 	
 	*callReference = connection->GetCallReference();
 	
-	if (strlen(callerid)) {
+	if (strlen(callerid))
 		connection->SetLocalPartyName(PString(callerid));
-	} 
+
 	connection->Unlock(); 	
 
 	if (h323debug) {
diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c
index 4aeef6ed3d9f11f5b82e0c43eedb0886026d2503..017a164361286e8c0e393a74a3ea93ee1a09ae9f 100755
--- a/channels/h323/chan_h323.c
+++ b/channels/h323/chan_h323.c
@@ -409,19 +409,6 @@ static int oh323_call(struct ast_channel *c, char *dest, int timeout)
 		p->calloptions.callerid = strdup(c->callerid);
 	}
 
-#if 0
-// Sumfing ain't right here
-	
-	char *tmp = strchr(c->callerid, '"');
-		if (!tmp) {
-			p->calloptions.callerid = malloc(sizeof(c->callerid+20)); // evil
-			sprintf(p->calloptions.callerid, "\"Unknown Name\" <%s>", c->callerid);
-		} else {
-
-		}
-
-#endif
-
 	res = h323_make_call(called_addr, &(p->cd), p->calloptions);
 
 	if (res) {