user-manual: use pithier example commit

Actually, we should have a competition for the favorite example commit.
Criteria:

	- length: one-line changes with one-line comments preferred,
	  and no long lines
	- significance/memorability
	- comic value

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
maint
J. Bruce Fields 2007-08-19 11:14:21 -04:00
parent a2ef9d633f
commit e2618ff427
1 changed files with 18 additions and 23 deletions

View File

@ -145,32 +145,27 @@ current branch:


------------------------------------------------ ------------------------------------------------
$ git show $ git show
commit 2b5f6dcce5bf94b9b119e9ed8d537098ec61c3d2 commit 17cf781661e6d38f737f15f53ab552f1e95960d7
Author: Jamal Hadi Salim <hadi@cyberus.ca> Author: Linus Torvalds <torvalds@ppc970.osdl.org.(none)>
Date: Sat Dec 2 22:22:25 2006 -0800 Date: Tue Apr 19 14:11:06 2005 -0700


[XFRM]: Fix aevent structuring to be more complete. Remove duplicate getenv(DB_ENVIRONMENT) call


aevents can not uniquely identify an SA. We break the ABI with this Noted by Tony Luck.
patch, but consensus is that since it is not yet utilized by any
(known) application then it is fine (better do it now than later).


Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> diff --git a/init-db.c b/init-db.c
Signed-off-by: David S. Miller <davem@davemloft.net> index 65898fa..b002dc6 100644
--- a/init-db.c
+++ b/init-db.c
@@ -7,7 +7,7 @@
diff --git a/Documentation/networking/xfrm_sync.txt b/Documentation/networking/xfrm_sync.txt int main(int argc, char **argv)
index 8be626f..d7aac9d 100644 {
--- a/Documentation/networking/xfrm_sync.txt - char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
+++ b/Documentation/networking/xfrm_sync.txt + char *sha1_dir, *path;
@@ -47,10 +47,13 @@ aevent_id structure looks like: int len, i;
struct xfrm_aevent_id { if (mkdir(".git", 0755) < 0) {
struct xfrm_usersa_id sa_id;
+ xfrm_address_t saddr;
__u32 flags;
+ __u32 reqid;
};
...
------------------------------------------------ ------------------------------------------------


As you can see, a commit shows who made the latest change, what they As you can see, a commit shows who made the latest change, what they