aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgbgen/request_reply.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/xgbgen/request_reply.go')
-rw-r--r--nexgb/xgbgen/request_reply.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/nexgb/xgbgen/request_reply.go b/nexgb/xgbgen/request_reply.go
index 4daa4ac..637266b 100644
--- a/nexgb/xgbgen/request_reply.go
+++ b/nexgb/xgbgen/request_reply.go
@@ -3,7 +3,6 @@ package main
import (
"fmt"
"log"
- "strings"
"unicode"
)
@@ -23,7 +22,7 @@ type Request struct {
func (r *Request) Initialize(p *Protocol) {
r.srcName = SrcName(p, r.xmlName)
if p.isExt() {
- r.srcName = strings.Title(strings.ToLower(p.Name)) + r.srcName
+ r.srcName = r.srcName
}
if r.Reply != nil {