Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
eb686b9c
Commit
eb686b9c
authored
Mar 01, 2009
by
Claes pwr46/data0/x4-6-0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem with . in tablename fixed
parent
1f9c5511
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
sev/lib/sev/src/sev_dbms.cpp
sev/lib/sev/src/sev_dbms.cpp
+6
-0
No files found.
sev/lib/sev/src/sev_dbms.cpp
View file @
eb686b9c
...
...
@@ -1385,6 +1385,12 @@ char *sev_dbms::oid_to_table( pwr_tOid oid, char *aname)
memcpy
(
&
vid
,
&
oid
.
vid
,
sizeof
(
vid
));
sprintf
(
tbl
,
"O%3.3u_%3.3u_%3.3u_%3.3u_%8.8x_%s"
,
vid
[
3
],
vid
[
2
],
vid
[
1
],
vid
[
0
],
oid
.
oix
,
cdh_Low
(
aname
));
// Replace '.' in attribute with '_'
for
(
char
*
s
=
tbl
;
*
s
;
s
++
)
{
if
(
*
s
==
'.'
)
*
s
=
'_'
;
}
return
tbl
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment