- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: enhgetpublickey_ptr
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 04:10 AM
04-15-2010 04:10 AM
enhgetpublickey_ptr
Where can I get them resolved?
/usr/lib/dld.sl: Unresolved symbol: enhgetpublickey_ptr (storage)
/usr/lib/dld.sl: Unresolved symbol: enhgetsecretkey_ptr (storage)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 06:38 AM
04-15-2010 06:38 AM
Re: enhgetpublickey_ptr
> libnsl.1 but are unresolved. [...]
Evidence? These don't sound to me like Name
Service Library functions.
http://linux.about.com/cs/linux101/g/libnsl.htm
> Where can I get them resolved?
In your own code? A Google search for these
things found this Forum thread. Only. I
know nothing, but if they were part of some
popular run-time library, then I'd expect
Google to find them in more places than this
one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 06:43 AM
04-15-2010 06:43 AM
Re: enhgetpublickey_ptr
enhgetpublickey_ptr |1073788036|undef |common |$BSS$
enhgetsecretkey_ptr |1073797672|undef |common |$BSS$
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 11:39 AM
04-15-2010 11:39 AM
Re: enhgetpublickey_ptr
> enhgetpublickey_ptr |1073788036|undef |common |$BSS$
> enhgetsecretkey_ptr |1073797672|undef |common |$BSS$
Hmmm. I still know nothing, but around here
(on its ".a" friend):
dy # uname -a
HP-UX dy B.11.11 U 9000/785 2012616114 unlimited-user license
dy # nm /usr/lib/libnsl.a | grep enhget
enhgetpublickey_ptr | 4|sdef |common |$SHORTBSS$
enhgetsecretkey_ptr | 4|sdef |common |$SHORTBSS$
If I knew what "sdef" ("secondary
definition") meant, I might be dangerous.
What is this "a program", and how was it
built/linked? My dim recollection of
building programs like wget (which must be
doing name resolution) on HP-UX doesn't
include any explicit reference to any libnsl
things.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2010 02:57 AM
04-16-2010 02:57 AM
Re: enhgetpublickey_ptr
dld.sl: Unresolved symbol: enhgetpublickey_ptr (storage)
dld.sl: Unresolved symbol: enhgetsecretkey_ptr (storage)
These symbols are exported from libnsl.1 on my 11.11 system. They aren't on 11.23, perhaps because I have a newer patch on 11.11, PHNE_37568?
PHNE_39167 is the recommended patch.
>nm libnsl.1 | grep enhget
enhgetpublickey_ptr ||undef |common |$BSS$
enhgetsecretkey_ptr ||undef |common |$BSS$
It appears nm(1) is broken. It should show these are definitions. But nm is the wrong tool to use on shlibs. The proper tool is:
odump -slexport libnsl.1 | grep enhget
>Steven: If I knew what "secondary
definition" meant
It's like a weak symbol.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2010 05:57 PM
04-16-2010 05:57 PM
Re: enhgetpublickey_ptr
Service Library functions.
Because they are data symbols, most likely "internal".
>A Google search for these things found this Forum thread. if they were part of some
popular run-time library
google wouldn't find these "internal" symbols unless there were problems or it walked the sources.