Skip to content

Commit

Permalink
fixup! Generate unique UIDs and GIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
adombeck committed Jan 13, 2025
1 parent b20bab8 commit 3a2e9b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/users/localentries/getgrent_c.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
// Package localentries provides functions to access the local user and group database.
//
//nolint:dupl // This it not a duplicate of getpwent_c.go
package localentries

/*
#include <stdlib.h>
#include <pwd.h>
#include <grp.h>
#include <errno.h>
#include <string.h>
*/
import "C"

Expand Down
2 changes: 2 additions & 0 deletions internal/users/localentries/getpwent_c.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// Package localentries provides functions to access local passwd entries.
//
//nolint:dupl // This it not a duplicate of getgrent_c.go
package localentries

/*
Expand Down

0 comments on commit 3a2e9b0

Please sign in to comment.