projects
/
NCIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f587d8
)
Fix a case issue in NCIP::Const::AUTHENTICATIONINPUT_MESSAGES.
author
Jason Stephenson
<jason@sigio.com>
Thu, 23 Oct 2014 23:13:15 +0000
(19:13 -0400)
committer
Jason Stephenson
<jason@sigio.com>
Thu, 23 Oct 2014 23:13:15 +0000
(19:13 -0400)
We had LookUpUser and it should have been LookupUser.
Signed-off-by: Jason Stephenson <jason@sigio.com>
lib/NCIP/Const.pm
patch
|
blob
|
history
diff --git
a/lib/NCIP/Const.pm
b/lib/NCIP/Const.pm
index
661c1b2
..
26bb79f
100644
(file)
--- a/
lib/NCIP/Const.pm
+++ b/
lib/NCIP/Const.pm
@@
-26,6
+26,6
@@
use constant SUPPORTED_VERSIONS => (
# Messages for which AuthenticationInput are valid.
use constant AUTHENTICATIONINPUT_MESSAGES => (
- 'Look
U
pUser', 'RenewItem', 'CheckOutItem', 'RequestItem',
+ 'Look
u
pUser', 'RenewItem', 'CheckOutItem', 'RequestItem',
);
1;