summaryrefslogtreecommitdiff
path: root/xgbgen/request_reply.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-10 17:01:42 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-10 17:01:42 -0400
commitb618b2ea09167306cfe29b6966faf184bc893c2d (patch)
treeebd8b505ebd83db1b891bc7a7f70d75f26e581e6 /xgbgen/request_reply.go
parentb10760ea62c5c071496a71d1d9ab6752989a309f (diff)
a huge commit. splitting extensions into their own sub-packages.
Diffstat (limited to 'xgbgen/request_reply.go')
-rw-r--r--xgbgen/request_reply.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/xgbgen/request_reply.go b/xgbgen/request_reply.go
index 4daa4ac..637266b 100644
--- a/xgbgen/request_reply.go
+++ b/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 {