]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Fix warnings caused by user_from_uid() and group_from_gid()
authormillert@openbsd.org <millert@openbsd.org>
Thu, 13 Sep 2018 15:23:32 +0000 (15:23 +0000)
committerDamien Miller <djm@mindrot.org>
Fri, 14 Sep 2018 02:49:29 +0000 (12:49 +1000)
now returning const char *.

OpenBSD-Commit-ID: b5fe571ea77cfa7b9035062829ab05eb87d7cc6f

sftp-common.c

index 13a7f5becc245d579be8165df079b37e47539812..5d743d3b2b12ee34ec117e4f28681cffeae5d149 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-common.c,v 1.30 2017/06/10 06:36:46 djm Exp $ */
+/* $OpenBSD: sftp-common.c,v 1.31 2018/09/13 15:23:32 millert Exp $ */
 /*
  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
  * Copyright (c) 2001 Damien Miller.  All rights reserved.
@@ -215,7 +215,7 @@ ls_file(const char *name, const struct stat *st, int remote, int si_units)
 {
        int ulen, glen, sz = 0;
        struct tm *ltime = localtime(&st->st_mtime);
-       char *user, *group;
+       const char *user, *group;
        char buf[1024], lc[8], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1];
        char sbuf[FMT_SCALED_STRSIZE];
        time_t now;