1a6b78bbc414798181067501af68573b2fbeb86b
galt
  Mon Mar 10 09:56:04 2014 -0700
Last little compile failures from changing hgsid to char * for new secure web ids. The problem was hidden because hgSession had makefile with HGWARN turned off. Angie will fix that.
diff --git src/hg/inc/wikiLink.h src/hg/inc/wikiLink.h
index b1a70eb..ba574d3 100644
--- src/hg/inc/wikiLink.h
+++ src/hg/inc/wikiLink.h
@@ -16,28 +16,28 @@
 /* Return the wiki host specified in hg.conf, or NULL.  Allocd here. */
 
 boolean loginSystemEnabled();
 /* Return TRUE if login.systemName  parameter is defined in hg.conf . */
 
 char *wikiLinkHost();
 /* Return the wiki host specified in hg.conf, or NULL.  Allocd here. */
 
 boolean wikiLinkEnabled();
 /* Return TRUE if all wiki.* parameters are defined in hg.conf . */
 
 char *wikiLinkUserName();
 /* Return the user name specified in cookies from the browser, or NULL if 
  * the user doesn't appear to be logged in. */
 
-char *wikiLinkUserLoginUrl(int hgsid);
+char *wikiLinkUserLoginUrl(char *hgsid);
 /* Return the URL for the wiki user login page. */
 
-char *wikiLinkUserLogoutUrl(int hgsid);
+char *wikiLinkUserLogoutUrl(char *hgsid);
 /* Return the URL for the wiki user logout page. */
 
-char *wikiLinkUserSignupUrl(int hgsid);
+char *wikiLinkUserSignupUrl(char *hgsid);
 /* Return the URL for the user signup  page. */
 
-char *wikiLinkChangePasswordUrl(int hgsid);
+char *wikiLinkChangePasswordUrl(char *hgsid);
 /* Return the URL for the user change password page. */
 
 #endif /* WIKILINK_H */