]> andersk Git - openssh.git/commitdiff
- (dtucker) [openbsd-compat/openbsd-compat.h] Prototypes for user_from_uid
authordtucker <dtucker>
Sat, 16 Jan 2010 00:53:07 +0000 (00:53 +0000)
committerdtucker <dtucker>
Sat, 16 Jan 2010 00:53:07 +0000 (00:53 +0000)
   and group_from_gid.

ChangeLog
openbsd-compat/openbsd-compat.h

index e4d6b8c44e979659020075702ce7ec6f0656d981..ebe777032abfa1994163150a6ce8804f1f6e2eba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 20100116
  - (dtucker) [openbsd-compat/pwcache.c] Pull in includes.h and thus defines.h
    so we correctly detect whether or not we have a native user_from_uid.
+ - (dtucker) [openbsd-compat/openbsd-compat.h] Prototypes for user_from_uid
+   and group_from_gid.
 
 20100115
  - (dtucker) OpenBSD CVS Sync
index fb63bcef497f4ee20f66d78f260938459af9edde..ea09c12077bb1ceb33bf3974223a39372c5283d5 100644 (file)
@@ -200,6 +200,14 @@ int vasprintf(char **, const char *, va_list);
 int vsnprintf(char *, size_t, const char *, va_list);
 #endif
 
+#ifndef HAVE_USER_FROM_UID
+char *user_from_uid(uid_t);
+#endif
+
+#ifndef HAVE_GROUP_FROM_GUID
+char *group_from_gid(gid_t);
+#endif
+
 void *xmmap(size_t size);
 char *xcrypt(const char *password, const char *salt);
 char *shadow_pw(struct passwd *pw);
This page took 0.042132 seconds and 5 git commands to generate.